Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
typeck
/
issue-96738.rs
blob: ce2556f869c7c13e942e64c3017813f30a60cbed [
file
] [
log
] [
blame
]
fn
main
()
{
Some
.
nonexistent_method
();
//~ ERROR: no method named `nonexistent_method` found
Some
.
nonexistent_field
;
//~ ERROR: no field `nonexistent_field`
}