Skip to content

Commit 80b2835

Browse files
committed
extend min_const_generics param ty tests
1 parent 12f0dba commit 80b2835

File tree

3 files changed

+94
-5
lines changed

3 files changed

+94
-5
lines changed
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// Check that all types allowed with `min_const_generics` work.
2+
// run-pass
3+
// revisions: full min
4+
5+
#![cfg_attr(full, feature(const_generics))]
6+
#![cfg_attr(full, allow(incomplete_features))]
7+
#![cfg_attr(min, feature(min_const_generics))]
8+
9+
struct A<const N: u8>;
10+
struct B<const N: u16>;
11+
struct C<const N: u32>;
12+
struct D<const N: u64>;
13+
struct E<const N: u128>;
14+
struct F<const N: usize>;
15+
struct G<const N: i8>;
16+
struct H<const N: i16>;
17+
struct I<const N: i32>;
18+
struct J<const N: i64>;
19+
struct K<const N: i128>;
20+
struct L<const N: isize>;
21+
struct M<const N: char>;
22+
struct N<const N: bool>;
23+
24+
fn main() {
25+
let _ = A::<{u8::MIN}>;
26+
let _ = A::<{u8::MAX}>;
27+
let _ = B::<{u16::MIN}>;
28+
let _ = B::<{u16::MAX}>;
29+
let _ = C::<{u32::MIN}>;
30+
let _ = C::<{u32::MAX}>;
31+
let _ = D::<{u64::MIN}>;
32+
let _ = D::<{u64::MAX}>;
33+
let _ = E::<{u128::MIN}>;
34+
let _ = E::<{u128::MAX}>;
35+
let _ = F::<{usize::MIN}>;
36+
let _ = F::<{usize::MAX}>;
37+
let _ = G::<{i8::MIN}>;
38+
let _ = G::<{i8::MAX}>;
39+
let _ = H::<{i16::MIN}>;
40+
let _ = H::<{i16::MAX}>;
41+
let _ = I::<{i32::MIN}>;
42+
let _ = I::<{i32::MAX}>;
43+
let _ = J::<{i64::MIN}>;
44+
let _ = J::<{i64::MAX}>;
45+
let _ = K::<{i128::MIN}>;
46+
let _ = K::<{i128::MAX}>;
47+
let _ = L::<{isize::MIN}>;
48+
let _ = L::<{isize::MAX}>;
49+
let _ = M::<'A'>;
50+
let _ = N::<true>;
51+
}

src/test/ui/const-generics/min_const_generics/complex-types.rs

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![feature(min_const_generics)]
2+
#![feature(never_type)]
23

34
struct Foo<const N: [u8; 0]>;
45
//~^ ERROR `[u8; 0]` is forbidden
@@ -14,4 +15,14 @@ struct Fez<const N: No>;
1415
struct Faz<const N: &'static u8>;
1516
//~^ ERROR `&'static u8` is forbidden
1617

18+
struct Fiz<const N: !>;
19+
//~^ ERROR `!` is forbidden
20+
21+
enum Goo<const N: ()> { A, B }
22+
//~^ ERROR `()` is forbidden
23+
24+
union Boo<const N: ()> { a: () }
25+
//~^ ERROR `()` is forbidden
26+
27+
1728
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: `[u8; 0]` is forbidden as the type of a const generic parameter
2-
--> $DIR/complex-types.rs:3:21
2+
--> $DIR/complex-types.rs:4:21
33
|
44
LL | struct Foo<const N: [u8; 0]>;
55
| ^^^^^^^
@@ -8,7 +8,7 @@ LL | struct Foo<const N: [u8; 0]>;
88
= note: more complex types are supported with `#[feature(const_generics)]`
99

1010
error: `()` is forbidden as the type of a const generic parameter
11-
--> $DIR/complex-types.rs:6:21
11+
--> $DIR/complex-types.rs:7:21
1212
|
1313
LL | struct Bar<const N: ()>;
1414
| ^^
@@ -17,7 +17,7 @@ LL | struct Bar<const N: ()>;
1717
= note: more complex types are supported with `#[feature(const_generics)]`
1818

1919
error: `No` is forbidden as the type of a const generic parameter
20-
--> $DIR/complex-types.rs:11:21
20+
--> $DIR/complex-types.rs:12:21
2121
|
2222
LL | struct Fez<const N: No>;
2323
| ^^
@@ -26,13 +26,40 @@ LL | struct Fez<const N: No>;
2626
= note: more complex types are supported with `#[feature(const_generics)]`
2727

2828
error: `&'static u8` is forbidden as the type of a const generic parameter
29-
--> $DIR/complex-types.rs:14:21
29+
--> $DIR/complex-types.rs:15:21
3030
|
3131
LL | struct Faz<const N: &'static u8>;
3232
| ^^^^^^^^^^^
3333
|
3434
= note: the only supported types are integers, `bool` and `char`
3535
= note: more complex types are supported with `#[feature(const_generics)]`
3636

37-
error: aborting due to 4 previous errors
37+
error: `!` is forbidden as the type of a const generic parameter
38+
--> $DIR/complex-types.rs:18:21
39+
|
40+
LL | struct Fiz<const N: !>;
41+
| ^
42+
|
43+
= note: the only supported types are integers, `bool` and `char`
44+
= note: more complex types are supported with `#[feature(const_generics)]`
45+
46+
error: `()` is forbidden as the type of a const generic parameter
47+
--> $DIR/complex-types.rs:21:19
48+
|
49+
LL | enum Goo<const N: ()> { A, B }
50+
| ^^
51+
|
52+
= note: the only supported types are integers, `bool` and `char`
53+
= note: more complex types are supported with `#[feature(const_generics)]`
54+
55+
error: `()` is forbidden as the type of a const generic parameter
56+
--> $DIR/complex-types.rs:24:20
57+
|
58+
LL | union Boo<const N: ()> { a: () }
59+
| ^^
60+
|
61+
= note: the only supported types are integers, `bool` and `char`
62+
= note: more complex types are supported with `#[feature(const_generics)]`
63+
64+
error: aborting due to 7 previous errors
3865

0 commit comments

Comments
 (0)