]> git.proxmox.com Git - rustc.git/blame - src/test/ui/span/issue-29595.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / span / issue-29595.rs
CommitLineData
cc61c64b
XL
1trait Tr {
2 const C: Self;
3}
4
5fn main() {
6 let a: u8 = Tr::C; //~ ERROR the trait bound `u8: Tr` is not satisfied
e9174d1e 7}