summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0308.stderr
blob: b71fb95e706aa0af3e8d857af4bc1858494bcd32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: intrinsic has wrong type
  --> $DIR/E0308.rs:4: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`.