about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/non-local-const.stderr
blob: d8df3269a19e9a078590e9221dfba3ab24df9aee (plain)
1
2
3
4
5
6
7
8
9
10
error: the constant `MAIN_SEPARATOR` is not of type `usize`
  --> $DIR/non-local-const.rs:9:14
   |
LL | impl Foo for [u8; std::path::MAIN_SEPARATOR] {}
   |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `usize`, found `char`
   |
   = note: the length of array `[u8; MAIN_SEPARATOR]` must be type `usize`

error: aborting due to 1 previous error