]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/ex-E0612.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / test / ui / error-codes / ex-E0612.rs
1 struct Foo(u32);
2
3 fn main() {
4    let y = Foo(0);
5    y.1; //~ ERROR no field `1` on type `Foo`
6 }