]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-33575.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-33575.rs
1 fn main() {
2     let baz = ().foo(); //~ ERROR no method named `foo` found
3     <i32 as std::str::FromStr>::from_str(&baz); // No complaints about `str` being unsized
4 }