mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
395 B
Rust
18 lines
395 B
Rust
// Test that we can't declare a const fn in an impl -- right now it's
|
|
// just not allowed at all, though eventually it'd make sense to allow
|
|
// it if the trait fn is const (but right now no trait fns can be
|
|
// const).
|
|
|
|
trait Foo {
|
|
fn f() -> u32;
|
|
}
|
|
|
|
impl Foo for u32 {
|
|
const fn f() -> u32 {
|
|
//~^ ERROR functions in traits cannot be declared const
|
|
22
|
|
}
|
|
}
|
|
|
|
fn main() {}
|