summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-96738.rs
blob: ce2556f869c7c13e942e64c3017813f30a60cbed (plain)
1
2
3
4
fn main() {
    Some.nonexistent_method(); //~ ERROR: no method named `nonexistent_method` found
    Some.nonexistent_field; //~ ERROR: no field `nonexistent_field`
}