2017-04-24 08:19:12 +00:00
|
|
|
// Check that we correctly prevent users from making trait objects
|
|
|
|
// from traits with associated consts.
|
2019-01-08 21:14:04 +00:00
|
|
|
//
|
2024-10-09 16:37:30 +00:00
|
|
|
//@ revisions: curr dyn_compatible_for_dispatch
|
2017-04-24 08:19:12 +00:00
|
|
|
|
2024-10-09 16:37:30 +00:00
|
|
|
#![cfg_attr(dyn_compatible_for_dispatch, feature(dyn_compatible_for_dispatch))]
|
2017-04-24 09:42:36 +00:00
|
|
|
|
2017-04-24 08:19:12 +00:00
|
|
|
trait Bar {
|
|
|
|
const X: usize;
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
|
2019-01-08 21:14:04 +00:00
|
|
|
//[curr]~^ ERROR E0038
|
2017-04-24 08:19:12 +00:00
|
|
|
t
|
2024-02-09 12:17:55 +00:00
|
|
|
//~^ ERROR E0038
|
2017-04-24 08:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|