blob: 314b44f603acda648b282d85da19af2e8934df10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/issue-41742.rs:34:7
|
LL | H["?"].f(); //~ ERROR mismatched types
| ^^^ expected u32, found reference
|
= note: expected type `u32`
found type `&'static str`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|