]> git.proxmox.com Git - rustc.git/blob - src/test/ui/typeck/issue-96738.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / typeck / issue-96738.rs
1 fn main() {
2 Some.nonexistent_method(); //~ ERROR: no method named `nonexistent_method` found
3 Some.nonexistent_field; //~ ERROR: no field `nonexistent_field`
4 }