rust/src/test/ui/resolve/resolve-primitive-fallback.stderr

23 lines
725 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0423]: expected value, found builtin type `u16`
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-primitive-fallback.rs:3:23
2018-08-08 07:28:26 -05:00
|
LL | std::mem::size_of(u16);
| ^^^ not a value
error[E0412]: cannot find type `u8` in the crate root
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-primitive-fallback.rs:8:14
2018-08-08 07:28:26 -05:00
|
LL | let _: ::u8;
| ^^ not found in the crate root
error[E0061]: this function takes 0 parameters but 1 parameter was supplied
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-primitive-fallback.rs:3:5
2018-08-08 07:28:26 -05:00
|
LL | std::mem::size_of(u16);
| ^^^^^^^^^^^^^^^^^^^^^^ expected 0 parameters
error: aborting due to 3 previous errors
Some errors occurred: E0061, E0412, E0423.
For more information about an error, try `rustc --explain E0061`.