]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/filter-intrinsics.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / filter-intrinsics.stderr
1 error[E0425]: cannot find function `size_of` in this scope
2   --> $DIR/filter-intrinsics.rs:3:13
3    |
4 LL |     let _ = size_of::<usize>();
5    |             ^^^^^^^ not found in this scope
6    |
7 help: consider importing this function
8    |
9 LL | use std::mem::size_of;
10    |
11
12 error[E0425]: cannot find function `fabsf64` in this scope
13   --> $DIR/filter-intrinsics.rs:8:13
14    |
15 LL |     let _ = fabsf64(1.0);
16    |             ^^^^^^^ not found in this scope
17    |
18 help: consider importing this function
19    |
20 LL | use std::intrinsics::fabsf64;
21    |
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0425`.