19 lines
203 B
Rust
19 lines
203 B
Rust
// compile-pass
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![allow(warnings)]
|
|
|
|
#[derive(Debug)]
|
|
struct Point {
|
|
}
|
|
|
|
struct NestedA<'a, 'b> {
|
|
x: &'a NestedB<'b>
|
|
}
|
|
|
|
struct NestedB<'a> {
|
|
x: &'a i32,
|
|
}
|
|
|
|
fn main() {
|
|
}
|