rust/tests/ui/typeck/issue-33575.rs

5 lines
167 B
Rust

fn main() {
let baz = ().foo(); //~ ERROR no method named `foo` found
<i32 as std::str::FromStr>::from_str(&baz); // No complaints about `str` being unsized
}