2018-01-15 05:18:06 -08:00
|
|
|
error[E0423]: expected value, found enum `n::Z`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:23:9
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
help: try using one of the enum's variants
|
|
|
|
|
|
|
|
|
LL | m::Z::Fn;
|
|
|
|
| ^^^^^^^^
|
|
|
|
LL | m::Z::Struct;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
LL | m::Z::Unit;
|
|
|
|
| ^^^^^^^^^^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0423]: expected value, found enum `Z`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:25:9
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / fn f() {
|
|
|
|
LL | | n::Z;
|
|
|
|
LL | |
|
|
|
|
LL | | Z;
|
|
|
|
| | ^
|
|
|
|
... |
|
|
|
|
LL | | // This is ok, it is equivalent to not having braces
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named function `f` defined here
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
help: a function with a similar name exists
|
|
|
|
|
|
|
|
|
LL | f;
|
|
|
|
| ^
|
|
|
|
help: try using one of the enum's variants
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
LL | m::Z::Fn;
|
|
|
|
| ^^^^^^^^
|
|
|
|
LL | m::Z::Struct;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
LL | m::Z::Unit;
|
|
|
|
| ^^^^^^^^^^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0423]: expected value, found struct variant `Z::Struct`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:29:20
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-09-22 11:27:55 -07:00
|
|
|
LL | / Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
| |_____________- `Z::Struct` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = Z::Struct;
|
|
|
|
| ^^^^^^^^^ did you mean `Z::Struct { /* fields */ }`?
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0423]: expected value, found enum `m::E`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:41:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / fn f() {
|
|
|
|
LL | | n::Z;
|
|
|
|
LL | |
|
|
|
|
LL | | Z;
|
|
|
|
... |
|
|
|
|
LL | | // This is ok, it is equivalent to not having braces
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named function `f` defined here
|
|
|
|
...
|
|
|
|
LL | let _: E = m::E;
|
|
|
|
| ^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-01-09 14:11:00 -05:00
|
|
|
help: a function with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let _: E = m::f;
|
|
|
|
| ^
|
2019-03-20 14:54:43 -04:00
|
|
|
help: try using one of the enum's variants
|
|
|
|
|
|
|
|
|
LL | let _: E = E::Fn;
|
|
|
|
| ^^^^^
|
|
|
|
LL | let _: E = E::Struct;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL | let _: E = E::Unit;
|
|
|
|
| ^^^^^^^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible better candidates are found in other modules, you can import them into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use std::f32::consts::E;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use std::f64::consts::E;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0423]: expected value, found struct variant `m::E::Struct`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:45:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-09-22 11:27:55 -07:00
|
|
|
LL | / Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
| |_________- `m::E::Struct` defined here
|
|
|
|
...
|
|
|
|
LL | let _: E = m::E::Struct;
|
|
|
|
| ^^^^^^^^^^^^ did you mean `m::E::Struct { /* fields */ }`?
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0423]: expected value, found enum `E`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:49:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: E = E;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
help: try using one of the enum's variants
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
LL | let _: E = E::Fn;
|
|
|
|
| ^^^^^
|
|
|
|
LL | let _: E = E::Struct;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
LL | let _: E = E::Unit;
|
|
|
|
| ^^^^^^^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible better candidates are found in other modules, you can import them into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use std::f32::consts::E;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use std::f64::consts::E;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0423]: expected value, found struct variant `E::Struct`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:53:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-09-22 11:27:55 -07:00
|
|
|
LL | / Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
| |_________- `E::Struct` defined here
|
|
|
|
...
|
|
|
|
LL | let _: E = E::Struct;
|
|
|
|
| ^^^^^^^^^ did you mean `E::Struct { /* fields */ }`?
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `Z` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:57:12
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / pub enum E {
|
|
|
|
LL | | Fn(u8),
|
|
|
|
LL | | Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
LL | | Unit,
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named enum `E` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = m::n::Z;
|
|
|
|
| ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-01-09 14:11:00 -05:00
|
|
|
help: an enum with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let _: E = m::n::Z;
|
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use m::n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0423]: expected value, found enum `m::n::Z`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:57:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = m::n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^^^^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-03-20 14:54:43 -04:00
|
|
|
help: try using one of the enum's variants
|
|
|
|
|
|
|
|
|
LL | let _: Z = m::Z::Fn;
|
|
|
|
| ^^^^^^^^
|
|
|
|
LL | let _: Z = m::Z::Struct;
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
LL | let _: Z = m::Z::Unit;
|
|
|
|
| ^^^^^^^^^^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `Z` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:61:12
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / pub enum E {
|
|
|
|
LL | | Fn(u8),
|
|
|
|
LL | | Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
LL | | Unit,
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named enum `E` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = m::n::Z::Fn;
|
|
|
|
| ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-01-09 14:11:00 -05:00
|
|
|
help: an enum with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let _: E = m::n::Z::Fn;
|
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use m::n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0412]: cannot find type `Z` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:64:12
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / pub enum E {
|
|
|
|
LL | | Fn(u8),
|
|
|
|
LL | | Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
LL | | Unit,
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named enum `E` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = m::n::Z::Struct;
|
|
|
|
| ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-01-09 14:11:00 -05:00
|
|
|
help: an enum with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let _: E = m::n::Z::Struct;
|
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use m::n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0423]: expected value, found struct variant `m::n::Z::Struct`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:64:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-09-22 11:27:55 -07:00
|
|
|
LL | / Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
| |_____________- `m::n::Z::Struct` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = m::n::Z::Struct;
|
|
|
|
| ^^^^^^^^^^^^^^^ did you mean `m::n::Z::Struct { /* fields */ }`?
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0412]: cannot find type `Z` in this scope
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:68:12
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-10-14 17:20:50 -07:00
|
|
|
LL | / pub enum E {
|
|
|
|
LL | | Fn(u8),
|
|
|
|
LL | | Struct {
|
|
|
|
LL | | s: u8,
|
|
|
|
LL | | },
|
|
|
|
LL | | Unit,
|
|
|
|
LL | | }
|
|
|
|
| |_____- similarly named enum `E` defined here
|
|
|
|
...
|
|
|
|
LL | let _: Z = m::n::Z::Unit {};
|
|
|
|
| ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-01-09 14:11:00 -05:00
|
|
|
help: an enum with a similar name exists
|
|
|
|
|
|
|
|
|
LL | let _: E = m::n::Z::Unit {};
|
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
help: possible candidate is found in another module, you can import it into scope
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | use m::n::Z;
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0603]: enum `Z` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:57:22
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = m::n::Z;
|
2018-10-27 20:21:34 +03:00
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0603]: enum `Z` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:61:22
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = m::n::Z::Fn;
|
2018-10-27 20:21:34 +03:00
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0603]: enum `Z` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:64:22
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = m::n::Z::Struct;
|
2018-10-27 20:21:34 +03:00
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0603]: enum `Z` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:68:22
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = m::n::Z::Unit {};
|
2018-10-27 20:21:34 +03:00
|
|
|
| ^
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:27:20
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-08-06 22:29:10 -07:00
|
|
|
LL | Fn(u8),
|
|
|
|
| ------ fn(u8) -> m::n::Z {m::n::Z::Fn} defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: Z = Z::Fn;
|
2019-08-06 22:29:10 -07:00
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| expected enum `m::n::Z`, found fn item
|
2019-08-08 16:56:57 -07:00
|
|
|
| help: use parentheses to instantiate this tuple variant: `Z::Fn(_)`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-11-13 14:16:56 -08:00
|
|
|
= note: expected enum `m::n::Z`
|
|
|
|
found fn item `fn(u8) -> m::n::Z {m::n::Z::Fn}`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0618]: expected function, found enum variant `Z::Unit`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:31:17
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Unit,
|
2018-01-15 05:18:06 -08:00
|
|
|
| ---- `Z::Unit` defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _ = Z::Unit();
|
2018-11-10 20:46:05 -08:00
|
|
|
| ^^^^^^^--
|
|
|
|
| |
|
|
|
|
| call expression requires function
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-01-15 05:18:06 -08:00
|
|
|
help: `Z::Unit` is a unit variant, you need to write it without the parenthesis
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | let _ = Z::Unit;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:43:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-08-06 22:29:10 -07:00
|
|
|
LL | Fn(u8),
|
|
|
|
| ------ fn(u8) -> m::E {m::E::Fn} defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: E = m::E::Fn;
|
2019-08-06 22:29:10 -07:00
|
|
|
| ^^^^^^^^
|
|
|
|
| |
|
|
|
|
| expected enum `m::E`, found fn item
|
2019-08-08 16:56:57 -07:00
|
|
|
| help: use parentheses to instantiate this tuple variant: `m::E::Fn(_)`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-11-13 14:16:56 -08:00
|
|
|
= note: expected enum `m::E`
|
|
|
|
found fn item `fn(u8) -> m::E {m::E::Fn}`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0618]: expected function, found enum variant `m::E::Unit`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:47:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Unit,
|
2018-01-15 05:18:06 -08:00
|
|
|
| ---- `m::E::Unit` defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: E = m::E::Unit();
|
2018-11-10 20:46:05 -08:00
|
|
|
| ^^^^^^^^^^--
|
|
|
|
| |
|
|
|
|
| call expression requires function
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-01-15 05:18:06 -08:00
|
|
|
help: `m::E::Unit` is a unit variant, you need to write it without the parenthesis
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | let _: E = m::E::Unit;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:51:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-08-06 22:29:10 -07:00
|
|
|
LL | Fn(u8),
|
|
|
|
| ------ fn(u8) -> m::E {m::E::Fn} defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: E = E::Fn;
|
2019-08-06 22:29:10 -07:00
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| expected enum `m::E`, found fn item
|
2019-08-08 16:56:57 -07:00
|
|
|
| help: use parentheses to instantiate this tuple variant: `E::Fn(_)`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2019-11-13 14:16:56 -08:00
|
|
|
= note: expected enum `m::E`
|
|
|
|
found fn item `fn(u8) -> m::E {m::E::Fn}`
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
|
|
error[E0618]: expected function, found enum variant `E::Unit`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/privacy-enum-ctor.rs:55:16
|
2018-01-15 05:18:06 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Unit,
|
2018-01-15 05:18:06 -08:00
|
|
|
| ---- `E::Unit` defined here
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _: E = E::Unit();
|
2018-11-10 20:46:05 -08:00
|
|
|
| ^^^^^^^--
|
|
|
|
| |
|
|
|
|
| call expression requires function
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2018-01-15 05:18:06 -08:00
|
|
|
help: `E::Unit` is a unit variant, you need to write it without the parenthesis
|
|
|
|
|
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | let _: E = E::Unit;
|
2018-01-15 05:18:06 -08:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 23 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0308, E0412, E0423, E0603, E0618.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|