]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/float-generic.simple.stderr
Auto merge of #105924 - TimNN:ui-remap, r=Mark-Simulacrum
[rust.git] / tests / ui / const-generics / float-generic.simple.stderr
1 error: `f32` is forbidden as the type of a const generic parameter
2   --> $DIR/float-generic.rs:5:17
3    |
4 LL | fn foo<const F: f32>() {}
5    |                 ^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = help: more complex types are supported with `#![feature(adt_const_params)]`
9
10 error: aborting due to previous error
11