|
| 1 | +error: using `#![feature(effects)]` without enabling next trait solver globally |
| 2 | + | |
| 3 | + = note: the next trait solver must be enabled globally for the effects feature to work correctly |
| 4 | + = help: use `-Znext-solver` to enable |
| 5 | + |
| 6 | +error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `size_of` |
| 7 | + --> $DIR/safe-intrinsic-mismatch.rs:11:5 |
| 8 | + | |
| 9 | +LL | fn size_of<T>() -> usize; |
| 10 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 11 | + |
| 12 | +error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `size_of` |
| 13 | + --> $DIR/safe-intrinsic-mismatch.rs:11:5 |
| 14 | + | |
| 15 | +LL | fn size_of<T>() -> usize; |
| 16 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 17 | + | |
| 18 | + = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` |
| 19 | + |
| 20 | +error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `assume` |
| 21 | + --> $DIR/safe-intrinsic-mismatch.rs:16:1 |
| 22 | + | |
| 23 | +LL | const fn assume(_b: bool) {} |
| 24 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 25 | + |
| 26 | +error[E0308]: intrinsic has wrong type |
| 27 | + --> $DIR/safe-intrinsic-mismatch.rs:16:16 |
| 28 | + | |
| 29 | +LL | const fn assume(_b: bool) {} |
| 30 | + | ^ expected unsafe fn, found safe fn |
| 31 | + | |
| 32 | + = note: expected signature `unsafe fn(_)` |
| 33 | + found signature `fn(_)` |
| 34 | + |
| 35 | +error: intrinsic safety mismatch between list of intrinsics within the compiler and core library intrinsics for intrinsic `const_deallocate` |
| 36 | + --> $DIR/safe-intrinsic-mismatch.rs:20:1 |
| 37 | + | |
| 38 | +LL | const fn const_deallocate(_ptr: *mut u8, _size: usize, _align: usize) {} |
| 39 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 40 | + |
| 41 | +error[E0308]: intrinsic has wrong type |
| 42 | + --> $DIR/safe-intrinsic-mismatch.rs:20:26 |
| 43 | + | |
| 44 | +LL | const fn const_deallocate(_ptr: *mut u8, _size: usize, _align: usize) {} |
| 45 | + | ^ expected unsafe fn, found safe fn |
| 46 | + | |
| 47 | + = note: expected signature `unsafe fn(_, _, _)` |
| 48 | + found signature `fn(_, _, _)` |
| 49 | + |
| 50 | +error: aborting due to 7 previous errors |
| 51 | + |
| 52 | +For more information about this error, try `rustc --explain E0308`. |
0 commit comments