about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-28586.rs
blob: 4d286be1e3302ae0e8bb3db6efd4bd123fb5897c (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 for type `usize`

fn main() { }