Skip to content

Commit 6789540

Browse files
authored
Rollup merge of #72008 - lcnr:patch-3, r=varkor
Add const-generics test Taken from #71973 as this apparently already compiles. r? @varkor
2 parents c4c6340 + 4fd70e4 commit 6789540

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// check-pass
2+
#![allow(incomplete_features)]
3+
#![feature(const_generics)]
4+
5+
struct Const<const N: usize>;
6+
trait Foo<const N: usize> {}
7+
8+
impl<const N: usize> Foo<N> for Const<N> {}
9+
10+
fn foo_impl(_: impl Foo<3>) {}
11+
12+
fn foo_explicit<T: Foo<3>>(_: T) {}
13+
14+
fn foo_where<T>(_: T)
15+
where
16+
T: Foo<3>,
17+
{
18+
}
19+
20+
fn main() {
21+
foo_impl(Const);
22+
foo_impl(Const::<3>);
23+
24+
foo_explicit(Const);
25+
foo_explicit(Const::<3>);
26+
27+
foo_where(Const);
28+
foo_where(Const::<3>);
29+
}

0 commit comments

Comments
 (0)