]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0425.rs
Merge commit '6f50986667debbfc67776304a8ee23fe0158613f' into libgccjit-codegen
[rust.git] / src / test / ui / error-codes / E0425.rs
1 trait Foo {
2     fn bar() {
3         elf; //~ ERROR E0425
4     }
5 }
6
7 fn main () {
8 }