]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/issue-35075.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / lint / issue-35075.rs
1 struct Bar<T> {
2 inner: Foo<T> //~ ERROR cannot find type `Foo` in this scope
3 }
4
5 enum Baz<T> {
6 Foo(Foo<T>) //~ ERROR cannot find type `Foo` in this scope
7 }
8
9 fn main() {}