Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
auto_trait_valid.rs
blob: 0fdab7ff3b136f26d450543ea97ffffd7bf46818 [
file
] [
log
] [
blame
]
// #![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
()
{}