mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
200 B
Rust
12 lines
200 B
Rust
//@ check-pass
|
|
//@ edition:2021
|
|
//@ aux-build:rustc-serialize.rs
|
|
|
|
#![crate_type = "lib"]
|
|
#![allow(deprecated, soft_unstable)]
|
|
|
|
extern crate rustc_serialize;
|
|
|
|
#[derive(RustcDecodable)]
|
|
pub enum Foo {}
|