about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/issue-105257.stderr
blob: d7ded0f1f748b33b402227a7a10f5d12ef90bdf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: defaults for const parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
  --> $DIR/issue-105257.rs:5:12
   |
LL |     fn fnc<const N: usize = "">(&self) {}
   |            ^^^^^^^^^^^^^^^^^^^

error: defaults for const parameters are only allowed in `struct`, `enum`, `type`, or `trait` definitions
  --> $DIR/issue-105257.rs:7:12
   |
LL |     fn foo<const N: usize = { std::mem::size_of::<T>() }>(&self) {}
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0308]: mismatched types
  --> $DIR/issue-105257.rs:5:29
   |
LL |     fn fnc<const N: usize = "">(&self) {}
   |                             ^^ expected `usize`, found `&str`

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0308`.