blob: 2b4f5e0975ac3d8ed9ac83915dc22733b825f525 [file] [log] [blame]
// Test that an `impl Trait` type that expands to itself is an error.
fn test() -> impl Sized { //~ ERROR E0720
test()
}
fn main() {}