Examples: ```rs use std::{ fs, // (temporarily commented, we'll need this again in a second) io, }; use foo::{ self // this is important }; ``` Becomes: ```rs use std::fs; use foo::{self, // this is important}; ``` Which now has syntax errors.