]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/qualified-path-in-turbofish.fixed
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / parser / qualified-path-in-turbofish.fixed
CommitLineData
74b04a01
XL
1// run-rustfix
2trait T {
3 type Ty;
4}
5
6struct Impl;
7
8impl T for Impl {
9 type Ty = u32;
10}
11
12fn template<T>() -> i64 {
13 3
14}
15
16fn main() {
17 template::<<Impl as T>::Ty>();
18 //~^ ERROR found single colon before projection in qualified path
19}