mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
198 B
Rust
13 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() {}
|
|
}
|