rust/tests/ui-toml/toml_replaceable_disallowed_methods/replaceable_disallowed_methods.fixed
2024-11-15 17:37:08 -05:00

8 lines
85 B
Rust

fn bad() {}
fn questionable() {}
fn good() {}
fn main() {
good();
good();
}