summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/qualified-path-in-turbofish.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/qualified-path-in-turbofish.rs')
-rw-r--r--tests/ui/parser/qualified-path-in-turbofish.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/parser/qualified-path-in-turbofish.rs b/tests/ui/parser/qualified-path-in-turbofish.rs
new file mode 100644
index 000000000..2f4b2ed34
--- /dev/null
+++ b/tests/ui/parser/qualified-path-in-turbofish.rs
@@ -0,0 +1,19 @@
+// run-rustfix
+trait T {
+ type Ty;
+}
+
+struct Impl;
+
+impl T for Impl {
+ type Ty = u32;
+}
+
+fn template<T>() -> i64 {
+ 3
+}
+
+fn main() {
+ template::<<Impl as T>:Ty>();
+ //~^ ERROR found single colon before projection in qualified path
+}