```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
--> $DIR/attempted-access-non-fatal.rs:7:15
|
LL | let _ = 2.l;
| ^
|
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
|
LL - let _ = 2.l;
LL + let _ = 2.0f64;
|
```
102 lines
2.5 KiB
Text
102 lines
2.5 KiB
Text
error[E0061]: this enum variant takes 1 argument but 0 arguments were supplied
|
|
--> $DIR/missing-unit-argument.rs:11:33
|
|
|
|
|
LL | let _: Result<(), String> = Ok();
|
|
| ^^-- argument #1 of type `()` is missing
|
|
|
|
|
note: tuple variant defined here
|
|
--> $SRC_DIR/core/src/result.rs:LL:COL
|
|
help: provide the argument
|
|
|
|
|
LL - let _: Result<(), String> = Ok();
|
|
LL + let _: Result<(), String> = Ok(());
|
|
|
|
|
|
|
error[E0061]: this function takes 2 arguments but 0 arguments were supplied
|
|
--> $DIR/missing-unit-argument.rs:12:5
|
|
|
|
|
LL | foo();
|
|
| ^^^-- two arguments of type `()` and `()` are missing
|
|
|
|
|
note: function defined here
|
|
--> $DIR/missing-unit-argument.rs:1:4
|
|
|
|
|
LL | fn foo(():(), ():()) {}
|
|
| ^^^ ----- -----
|
|
help: provide the arguments
|
|
|
|
|
LL - foo();
|
|
LL + foo((), ());
|
|
|
|
|
|
|
error[E0061]: this function takes 2 arguments but 1 argument was supplied
|
|
--> $DIR/missing-unit-argument.rs:13:5
|
|
|
|
|
LL | foo(());
|
|
| ^^^---- argument #2 of type `()` is missing
|
|
|
|
|
note: function defined here
|
|
--> $DIR/missing-unit-argument.rs:1:4
|
|
|
|
|
LL | fn foo(():(), ():()) {}
|
|
| ^^^ -----
|
|
help: provide the argument
|
|
|
|
|
LL - foo(());
|
|
LL + foo((), ());
|
|
|
|
|
|
|
error[E0061]: this function takes 1 argument but 0 arguments were supplied
|
|
--> $DIR/missing-unit-argument.rs:14:5
|
|
|
|
|
LL | bar();
|
|
| ^^^-- argument #1 of type `()` is missing
|
|
|
|
|
note: function defined here
|
|
--> $DIR/missing-unit-argument.rs:2:4
|
|
|
|
|
LL | fn bar(():()) {}
|
|
| ^^^ -----
|
|
help: provide the argument
|
|
|
|
|
LL - bar();
|
|
LL + bar(());
|
|
|
|
|
|
|
error[E0061]: this method takes 1 argument but 0 arguments were supplied
|
|
--> $DIR/missing-unit-argument.rs:15:7
|
|
|
|
|
LL | S.baz();
|
|
| ^^^-- argument #1 of type `()` is missing
|
|
|
|
|
note: method defined here
|
|
--> $DIR/missing-unit-argument.rs:6:8
|
|
|
|
|
LL | fn baz(self, (): ()) { }
|
|
| ^^^ ------
|
|
help: provide the argument
|
|
|
|
|
LL - S.baz();
|
|
LL + S.baz(());
|
|
|
|
|
|
|
error[E0061]: this method takes 1 argument but 0 arguments were supplied
|
|
--> $DIR/missing-unit-argument.rs:16:7
|
|
|
|
|
LL | S.generic::<()>();
|
|
| ^^^^^^^^^^^^^-- argument #1 of type `()` is missing
|
|
|
|
|
note: method defined here
|
|
--> $DIR/missing-unit-argument.rs:7:8
|
|
|
|
|
LL | fn generic<T>(self, _: T) { }
|
|
| ^^^^^^^ ----
|
|
help: provide the argument
|
|
|
|
|
LL - S.generic::<()>();
|
|
LL + S.generic::<()>(());
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0061`.
|