about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0308.stderr
blob: a1077481a8162de6585425191d0688be40f0e3d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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`.