]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0253.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / test / ui / error-codes / E0253.rs
1 mod foo {
2     pub trait MyTrait {
3         fn do_something();
4     }
5 }
6
7 use foo::MyTrait::do_something;
8     //~^ ERROR E0253
9
10 fn main() {}