// aux-build:const_evaluatable_lib.rs #![feature(generic_const_exprs)] #![allow(incomplete_features)] extern crate const_evaluatable_lib; fn user() { let _ = const_evaluatable_lib::test1::(); //~^ ERROR unconstrained generic constant //~| ERROR unconstrained generic constant //~| ERROR unconstrained generic constant //~| ERROR unconstrained generic constant } fn main() {}