rust/src/test/ui/const-generics/issues/issue-63322-forbid-dyn.rs

21 lines
571 B
Rust
Raw Normal View History

// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
#![cfg_attr(min, feature(min_const_generics))]
2020-04-11 21:02:49 +02:00
trait A {}
struct B;
impl A for B {}
fn test<const T: &'static dyn A>() {
//[full]~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]` to be used
//[min]~^^ ERROR `&'static (dyn A + 'static)` is forbidden as the type of
// a const generic parameter
//[min]~| ERROR must be annotated with `#[derive(PartialEq, Eq)]` to be used
2020-04-11 21:02:49 +02:00
unimplemented!()
}
fn main() {
test::<{ &B }>();
}