]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/parenthesized-deref-suggestion.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.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 }