Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-tup-index-span.rs
blob: e77d392e6940282029a11554d11c4c0115a3e6b3 [
file
] [
log
] [
blame
] [
edit
]
// Test spans of errors
const
TUP
:
(
usize
,)
=
5usize
<<
64
;
//~^ ERROR mismatched types
//~| expected `(usize,)`, found `usize`
const
ARR
:
[
i32
;
TUP
.
0
]
=
[];
fn
main
()
{
}