summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-28586.rs
blob: c543ef9b0e3d8466b024cab48a009f1e62ca1001 (plain)
1
2
3
4
5
6
7
// Regression test for issue #28586

pub trait Foo {}
impl Foo for [u8; usize::BYTES] {}
//~^ ERROR no associated item named `BYTES` found

fn main() { }