Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
const-generics
/
different_generic_args_array.rs
blob: 4d225dfdd873035295af3c25baab932c43755568 [
file
] [
log
] [
blame
]
// Check that different const types are different.
#![
feature
(
adt_const_params
)]
#![
allow
(
incomplete_features
)]
struct
Const
<
const
V
:
[
usize
;
1
]>
{}
fn
main
()
{
let
mut
x
=
Const
::<{
[
3
]
}>
{};
x
=
Const
::<{
[
4
]
}>
{};
//~^ ERROR mismatched types
}