mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
9 lines
121 B
Rust
9 lines
121 B
Rust
//@ check-pass
|
|
// issue: rust-lang/rust#106247
|
|
|
|
pub trait Trait {
|
|
fn method(&self) where Self: Sync;
|
|
}
|
|
|
|
fn main() {}
|