Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/test_data/parser/err/0048_double_fish.rs')
-rw-r--r--crates/syntax/test_data/parser/err/0048_double_fish.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/syntax/test_data/parser/err/0048_double_fish.rs b/crates/syntax/test_data/parser/err/0048_double_fish.rs
new file mode 100644
index 0000000000..31c12bfff9
--- /dev/null
+++ b/crates/syntax/test_data/parser/err/0048_double_fish.rs
@@ -0,0 +1,7 @@
+fn f() {
+ S::<Item::<lol>::<nope>>;
+}
+
+fn g() {
+ let _: Item::<lol>::<nope> = ();
+}