Skip to content

Commit cd54ada

Browse files
committed
Add test
1 parent 1ef49bc commit cd54ada

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
trait Foo {
2+
type Bar<T>;
3+
}
4+
5+
fn bar(x: &dyn Foo) {} //~ ERROR the trait `Foo` cannot be made into an object
6+
7+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error[E0038]: the trait `Foo` cannot be made into an object
2+
--> $DIR/object-unsafe-missing-assoc-type.rs:5:16
3+
|
4+
LL | fn bar(x: &dyn Foo) {}
5+
| ^^^ `Foo` cannot be made into an object
6+
|
7+
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
8+
--> $DIR/object-unsafe-missing-assoc-type.rs:2:10
9+
|
10+
LL | trait Foo {
11+
| --- this trait cannot be made into an object...
12+
LL | type Bar<T>;
13+
| ^^^ ...because it contains the generic associated type `Bar`
14+
= help: consider moving `Bar` to another trait
15+
16+
error: aborting due to previous error
17+
18+
For more information about this error, try `rustc --explain E0038`.

0 commit comments

Comments
 (0)