]> git.lizzy.rs Git - rust.git/blob - tests/ui/save-analysis/issue-37323.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[rust.git] / tests / ui / save-analysis / issue-37323.rs
1 // check-pass
2 // compile-flags: -Zsave-analysis
3
4 #![feature(rustc_attrs)]
5 #![allow(warnings)]
6
7 #[derive(Debug)]
8 struct Point {
9 }
10
11 struct NestedA<'a, 'b> {
12     x: &'a NestedB<'b>
13 }
14
15 struct NestedB<'a> {
16     x: &'a i32,
17 }
18
19 fn main() {
20 }