rust/crates/syntax/test_data/parser/err/0049_double_fish.rs
Aleksey Kladov 8ae1f9c335 internal: add erroneous test for double turbo fish
We parse `f` successfully, but that is a bug.
2021-09-19 11:42:10 +03:00

8 lines
90 B
Rust

fn f() {
S::<Item::<lol>::<nope>>;
}
fn g() {
let _: Item::<lol>::<nope> = ();
}