mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 21:42:44 +00:00
12 lines
147 B
Rust
12 lines
147 B
Rust
//@ check-pass
|
|
|
|
pub const STATIC_TRAIT: &dyn Test = &();
|
|
|
|
fn main() {}
|
|
|
|
pub trait Test {
|
|
fn test() where Self: Sized {}
|
|
}
|
|
|
|
impl Test for () {}
|