about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/issue-105257.stderr
blob: 1d0ab56519cfbeb620b7814a90ce69aee9953524 (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 generic parameters are not allowed here
  --> $DIR/issue-105257.rs:5:12
   |
LL |     fn fnc<const N: usize = "">(&self) {}
   |            ^^^^^^^^^^^^^^^^^^^

error: defaults for generic parameters are not allowed here
  --> $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`.