mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
13 lines
346 B
Plaintext
13 lines
346 B
Plaintext
error[E0308]: intrinsic has wrong type
|
|
--> $DIR/E0308.rs:5:16
|
|
|
|
|
LL | fn size_of<T>();
|
|
| ^ expected `usize`, found `()`
|
|
|
|
|
= note: expected signature `fn() -> usize`
|
|
found signature `fn() -> ()`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|