mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
394 B
Rust
20 lines
394 B
Rust
#![feature(associated_const_equality)]
|
|
|
|
pub enum Mode {
|
|
Cool,
|
|
}
|
|
|
|
pub trait Parse {
|
|
const MODE: Mode;
|
|
}
|
|
|
|
pub trait CoolStuff: Parse<MODE = Mode::Cool> {}
|
|
//~^ ERROR expected constant, found type
|
|
//~| ERROR expected constant, found type
|
|
//~| ERROR expected constant, found type
|
|
//~| ERROR expected type
|
|
|
|
fn no_help() -> Mode::Cool {}
|
|
//~^ ERROR expected type, found variant
|
|
|
|
fn main() {}
|