mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-27 22:40:42 +00:00
11 lines
149 B
Rust
11 lines
149 B
Rust
// check-pass
|
|
#![feature(marker_trait_attr)]
|
|
|
|
#[marker]
|
|
trait Marker {}
|
|
|
|
impl Marker for &'static () {}
|
|
impl Marker for &'static () {}
|
|
|
|
fn main() {}
|