]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-20711.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / parser / issues / 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() {}