blob: 61826e9977e85e1b941cf030595c9584c67989f0 [file] [log] [blame]
//@ check-pass
#![feature(const_trait_impl)]
#[const_trait]
pub trait Test {}
impl Test for () {}
pub const fn test<T: ~const Test>() {}
pub const fn min_by_i32() -> fn() {
test::<()>
}
fn main() {}