]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-20711.rs
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[rust.git] / src / test / ui / parser / issue-20711.rs
1 struct Foo;
2
3 impl Foo {
4     #[stable(feature = "rust1", since = "1.0.0")]
5     //~^ ERROR expected item after attributes
6 }
7
8 fn main() {}