rust/tests/ui/dyn-compatibility/associated-consts.rs
2024-10-10 01:13:29 +02:00

20 lines
385 B
Rust

// Check that we correctly prevent users from making trait objects
// from traits with associated consts.
//
//@ revisions: curr dyn_compatible_for_dispatch
#![cfg_attr(dyn_compatible_for_dispatch, feature(dyn_compatible_for_dispatch))]
trait Bar {
const X: usize;
}
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
//[curr]~^ ERROR E0038
t
//~^ ERROR E0038
}
fn main() {
}