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