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