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