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