rust/tests/ui/rfcs/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.

15 lines
385 B
Rust
Raw Normal View History

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