]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-69310-array-size-lit-wrong-ty.rs
Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc
[rust.git] / src / test / ui / consts / issue-69310-array-size-lit-wrong-ty.rs
1 // This is a regression test for #69310, which was injected by #68118.
2 // The issue here was that as a performance optimization,
3 // we call the query `lit_to_const(input);`.
4 // However, the literal `input.lit` would not be of the type expected by `input.ty`.
5 // As a result, we immediately called `bug!(...)` instead of bubbling up the problem
6 // so that it could be handled by the caller of `lit_to_const` (`from_anon_const`).
7
8 fn main() {}
9
10 const A: [(); 0.1] = [()]; //~ ERROR mismatched types
11 const B: [(); b"a"] = [()]; //~ ERROR mismatched types