]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issue-20711.rs
New upstream version 1.43.0+dfsg1
[rustc.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() {}