mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +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 {}
|