mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
24 lines
363 B
Rust
24 lines
363 B
Rust
// Checking that none of these ICE, which was introduced in
|
|
// https://github.com/rust-lang/rust/issues/93553
|
|
trait Foo {
|
|
type Bar;
|
|
}
|
|
|
|
trait Baz: Foo {
|
|
const Bar: Self::Bar;
|
|
}
|
|
|
|
trait Baz2: Foo {
|
|
const Bar: u32;
|
|
|
|
fn foo() -> Self::Bar;
|
|
}
|
|
|
|
trait Baz3 {
|
|
const BAR: usize;
|
|
const QUX: Self::BAR;
|
|
//~^ ERROR found associated const
|
|
}
|
|
|
|
fn main() {}
|