]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-35075.rs
Merge commit 'dbee13661efa269cb4cd57bb4c6b99a19732b484' into sync_cg_clif-2020-12-27
[rust.git] / src / test / ui / issues / 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() {}