blob: 09c499452adb687b737843c63ed5c2d4bc8c33e8 [file] [log] [blame]
fn main() {
let baz = ().foo(); //~ ERROR no method named `foo` found for type `()` in the current scope
<i32 as std::str::FromStr>::from_str(&baz); // No complaints about `str` being unsized
}