rust/src/test/ui/rfc-2632-const-trait-impl/feature-gate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
312 B
Rust
Raw Normal View History

2020-01-03 00:31:30 +00:00
// revisions: stock gated
// gate-test-const_trait_impl
#![cfg_attr(gated, feature(const_trait_impl))]
#![feature(rustc_attrs)]
2020-01-03 00:31:30 +00:00
struct S;
trait T {}
impl const T for S {}
//[stock]~^ ERROR const trait impls are experimental
#[rustc_error]
fn main() {} //[gated]~ ERROR fatal error triggered by #[rustc_error]