blob: db24662e2d5add83e7f23c749aa8391c4339b52c [file] [log] [blame]
#![feature(optin_builtin_traits)]
auto trait MySafeTrait {}
struct Foo;
unsafe impl MySafeTrait for Foo {}
//~^ ERROR E0199
unsafe auto trait MyUnsafeTrait {}
impl MyUnsafeTrait for Foo {}
//~^ ERROR E0200
fn main() {}