mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
198 B
Rust
14 lines
198 B
Rust
// check-pass
|
|
|
|
fn main() {}
|
|
|
|
#[cfg(FALSE)]
|
|
trait X {
|
|
default const A: u8;
|
|
default const B: u8 = 0;
|
|
default type D;
|
|
default type C: Ord;
|
|
default fn f1();
|
|
default fn f2() {}
|
|
}
|