2021-08-26 17:58:28 +00:00
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
|
|
|
|
pub trait A {
|
|
|
|
fn assoc() -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const fn foo<T: A>() -> bool {
|
|
|
|
T::assoc()
|
2022-01-28 10:57:29 +00:00
|
|
|
//~^ ERROR the trait bound
|
|
|
|
//~| ERROR cannot call non-const fn
|
2021-08-26 17:58:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|