rust/tests/ui/did_you_mean/println-typo.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
180 B
Rust
Raw Normal View History

2023-02-17 18:34:41 -06:00
// https://internals.rust-lang.org/t/18227
fn main() {
prinltn!(); //~ ERROR cannot find macro `prinltn` in this scope
//^ a macro with a similar name exists: `println`
}