mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
219 B
Rust
12 lines
219 B
Rust
//@ run-pass
|
|
//@ aux-build:derive-no-std.rs
|
|
|
|
extern crate derive_no_std;
|
|
use derive_no_std::*;
|
|
|
|
fn main() {
|
|
let f = Foo { x: 0 };
|
|
assert_eq!(f.clone(), Foo::default());
|
|
|
|
assert!(Bar::Qux < Bar::Quux(42));
|
|
}
|