mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-20 10:55:14 +00:00
10 lines
197 B
Rust
10 lines
197 B
Rust
// revisions:cfail1
|
|
|
|
fn combinator<T, const S: usize>() -> [T; S] {}
|
|
//[cfail1]~^ ERROR mismatched types
|
|
|
|
fn main() {
|
|
combinator().into_iter();
|
|
//[cfail1]~^ ERROR type annotations needed
|
|
}
|