]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/parenthesized-deref-suggestion.rs
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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 }