]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-12729.rs
Rollup merge of #106928 - bvanjoi:print-keyword-raw-identifier, r=petrochenkov
[rust.git] / tests / ui / issues / issue-12729.rs
1 // check-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 pub struct Foo;
6
7 mod bar {
8     use Foo;
9
10     impl Foo {
11         fn baz(&self) {}
12     }
13 }
14 fn main() {}