]> git.proxmox.com Git - rustc.git/blame - src/librustc_error_codes/error_codes/E0224.md
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_error_codes / error_codes / E0224.md
CommitLineData
ba9703b0
XL
1A trait object was declaired with no traits.
2
3Erroneous code example:
4
5```compile_fail,E0224
6type Foo = dyn 'static +;
7```
8
9Rust does not currently support this.
10
11To solve ensure the the trait object has at least one trait:
12
13```
14type Foo = dyn 'static + Copy;
15```