We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Examples:
use std::{ fs, // (temporarily commented, we'll need this again in a second) io, }; use foo::{ self // this is important };
Becomes:
use std::fs; use foo::{self, // this is important};
Which now has syntax errors.