2015-11-03 01:44:08 +00:00
|
|
|
// Regression test for issue #28586
|
|
|
|
|
|
|
|
pub trait Foo {}
|
2017-02-15 13:00:20 +00:00
|
|
|
impl Foo for [u8; usize::BYTES] {}
|
2020-01-08 16:05:31 +00:00
|
|
|
//~^ ERROR no associated item named `BYTES` found
|
2015-11-03 01:44:08 +00:00
|
|
|
|
|
|
|
fn main() { }
|