Files
rust/tests/ui/dyn-compatibility/associated-consts.rs

15 lines
226 B
Rust
Raw Normal View History

2017-04-24 01:19:12 -07:00
// Check that we correctly prevent users from making trait objects
// from traits with associated consts.
2017-04-24 02:42:36 -07:00
2017-04-24 01:19:12 -07:00
trait Bar {
const X: usize;
}
2019-05-28 14:46:13 -04:00
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
2025-02-04 02:37:13 +00:00
//~^ ERROR E0038
2017-04-24 01:19:12 -07:00
t
}
fn main() {
}