blob: 0fdab7ff3b136f26d450543ea97ffffd7bf46818 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// #![feature(auto_traits)] // not present in Rust 1.49 yet
#![feature(optin_builtin_traits)]
auto trait MegaSend {}
pub auto trait MegaSync {}
unsafe auto trait SuperSync {}
pub unsafe auto trait SuperSend {}
fn main() {}
|