]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/issue-96810.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / wf / issue-96810.rs
CommitLineData
064997fb
FG
1struct S<T: Tr>(T::Assoc);
2
3trait Tr {
4 type Assoc;
5}
6
7struct Hoge<K> {
8 s: S<K>, //~ ERROR the trait bound `K: Tr` is not satisfied
9 a: u32,
10}
11
12fn main() {}