Sign in
◑
Theme
rust
/
rust
/
cc7fb2da97f7701e1bd6ec87b5aefc162a64d310
/
.
/
tests
/
ui-toml
/
toml_replaceable_disallowed_methods
/
replaceable_disallowed_methods.rs
blob: 9257f0e3e1a7d3f32443b16b373629e356fe9d23 [
file
]
fn
bad
()
{}
fn
questionable
()
{}
fn
good
()
{}
fn
main
()
{
bad
();
//~^ disallowed_methods
questionable
();
//~^ disallowed_methods
}