summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/qualified-path-in-turbofish.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/qualified-path-in-turbofish.fixed')
-rw-r--r--tests/ui/parser/qualified-path-in-turbofish.fixed19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/parser/qualified-path-in-turbofish.fixed b/tests/ui/parser/qualified-path-in-turbofish.fixed
new file mode 100644
index 000000000..404d2f776
--- /dev/null
+++ b/tests/ui/parser/qualified-path-in-turbofish.fixed
@@ -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
+}