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