mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
12 lines
146 B
Rust
12 lines
146 B
Rust
// check-pass
|
|
|
|
pub const STATIC_TRAIT: &dyn Test = &();
|
|
|
|
fn main() {}
|
|
|
|
pub trait Test {
|
|
fn test() where Self: Sized {}
|
|
}
|
|
|
|
impl Test for () {}
|