]> git.lizzy.rs Git - rust.git/blob - tests/ui/intrinsics/safe-intrinsic-mismatch.stderr
Auto merge of #106975 - tmiasko:basic-blocks-cache, r=cjgillot
[rust.git] / tests / ui / intrinsics / safe-intrinsic-mismatch.stderr
1 error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `size_of`
2   --> $DIR/safe-intrinsic-mismatch.rs:5:5
3    |
4 LL |     fn size_of<T>() -> usize;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `assume`
8   --> $DIR/safe-intrinsic-mismatch.rs:8:5
9    |
10 LL |     fn assume(b: bool);
11    |     ^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14