]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/parenthesized-deref-suggestion.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / suggestions / parenthesized-deref-suggestion.rs
1 struct Session {
2 opts: u8,
3 }
4
5 fn main() {
6 let sess: &Session = &Session { opts: 0 };
7 (sess as *const Session).opts; //~ ERROR no field `opts` on type `*const Session`
8
9 let x = [0u32];
10 (x as [u32; 1]).0; //~ ERROR no field `0` on type `[u32; 1]`
11 }