rust/src/test/ui/resolve/issue-23305.rs

9 lines
112 B
Rust
Raw Normal View History

pub trait ToNbt<T> {
fn new(val: T) -> Self;
}
impl ToNbt<Self> {}
2018-04-15 16:21:00 -05:00
//~^ ERROR cycle detected
fn main() {}