blob: 2e05510121633c5ec4508fd4fcc0a31e5c0034ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![allow(internal_features)]
#![feature(staged_api)]
#![allow(dead_code)]
#![stable(feature = "a", since = "1.1.1" )]
#[stable(feature = "a", since = "1.1.1" )]
pub trait Trait {}
#[unstable_feature_bound(foo)]
#[unstable(feature = "foo", issue = "none" )]
impl <T> Trait for T {}
|