]> git.lizzy.rs Git - rust.git/blob - tests/debuginfo/auxiliary/cross_crate_debuginfo_type_uniquing.rs
Remove astconv usage in diagnostic
[rust.git] / tests / debuginfo / auxiliary / cross_crate_debuginfo_type_uniquing.rs
1 // no-prefer-dynamic
2 #![crate_type = "rlib"]
3 // compile-flags:-g
4
5 struct S1;
6
7 impl S1 {
8     fn f(&mut self) { }
9 }
10
11
12 struct S2;
13
14 impl S2 {
15     fn f(&mut self) { }
16 }