diff options
Diffstat (limited to 'tests/incremental/const-generics/issue-64087.rs')
-rw-r--r-- | tests/incremental/const-generics/issue-64087.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/incremental/const-generics/issue-64087.rs b/tests/incremental/const-generics/issue-64087.rs new file mode 100644 index 000000000..81c813531 --- /dev/null +++ b/tests/incremental/const-generics/issue-64087.rs @@ -0,0 +1,9 @@ +// revisions:cfail1 + +fn combinator<T, const S: usize>() -> [T; S] {} +//[cfail1]~^ ERROR mismatched types + +fn main() { + combinator().into_iter(); + //[cfail1]~^ ERROR type annotations needed +} |