1
Fork 0
rust/src/test/ui/coherence/coherence-default-trait-impl.rs

21 lines
454 B
Rust
Raw Normal View History

// revisions: old re
#![cfg_attr(re, feature(re_rebalance_coherence))]
2015-01-27 01:07:31 +01:00
#![feature(optin_builtin_traits)]
auto trait MySafeTrait {}
2015-01-27 01:07:31 +01:00
struct Foo;
unsafe impl MySafeTrait for Foo {}
//[old]~^ ERROR implementing the trait `MySafeTrait` is not unsafe
//[re]~^^ ERROR E0199
unsafe auto trait MyUnsafeTrait {}
impl MyUnsafeTrait for Foo {}
//[old]~^ ERROR the trait `MyUnsafeTrait` requires an `unsafe impl` declaration
//[re]~^^ ERROR E0200
2015-01-27 01:07:31 +01:00
fn main() {}