]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/issue-3973.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / traits / issue-3973.stderr
1 error[E0407]: method `new` is not a member of trait `ToString_`
2 --> $DIR/issue-3973.rs:11:5
3 |
4 LL | / fn new(x: f64, y: f64) -> Point {
5 LL | |
6 LL | | Point { x: x, y: y }
7 LL | | }
8 | |_____^ not a member of trait `ToString_`
9
10 error[E0599]: no function or associated item named `new` found for struct `Point` in the current scope
11 --> $DIR/issue-3973.rs:22:20
12 |
13 LL | struct Point {
14 | ------------ function or associated item `new` not found for this struct
15 ...
16 LL | let p = Point::new(0.0, 0.0);
17 | ^^^ function or associated item not found in `Point`
18
19 error: aborting due to 2 previous errors
20
21 Some errors have detailed explanations: E0407, E0599.
22 For more information about an error, try `rustc --explain E0407`.