mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
18 lines
397 B
Rust
18 lines
397 B
Rust
// revisions: full min
|
|
#![cfg_attr(full, feature(adt_const_params))]
|
|
#![cfg_attr(full, allow(incomplete_features))]
|
|
|
|
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
|
|
unimplemented!()
|
|
}
|
|
|
|
fn main() {
|
|
test::<{ &B }>();
|
|
}
|