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

15 lines
385 B
Rust
Raw Normal View History

2020-01-02 16:31:30 -08:00
// revisions: stock gated
// gate-test-const_trait_impl
#![cfg_attr(gated, feature(const_trait_impl))]
#![feature(rustc_attrs)]
2020-01-02 16:31:30 -08:00
struct S;
2022-08-28 06:27:31 +00:00
#[const_trait] //[stock]~ ERROR `const_trait` is a temporary placeholder
2020-01-02 16:31:30 -08:00
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]