#![feature(adt_const_params)] #![allow(incomplete_features)] use std::marker::ConstParamTy; #[derive(Eq, PartialEq)] struct Foo(T); trait Other {} impl ConstParamTy for Foo where T: Other + ConstParamTy {} fn foo>() {} //~^ ERROR `Foo` must implement `ConstParamTy` to be used as the type of a const generic parameter //~| NOTE `u8` must implement `Other`, but it does not fn main() {}