mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
error[E0308]: intrinsic has wrong type
|
|
--> $DIR/E0308.rs:6:5
|
|
|
|
|
LL | fn size_of<T>();
|
|
| ^^^^^^^^^^^^^^^^ expected `()`, found `usize`
|
|
|
|
|
= note: expected fn pointer `extern "rust-intrinsic" fn()`
|
|
found fn pointer `extern "rust-intrinsic" fn() -> usize`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|