mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
12 lines
292 B
Rust
12 lines
292 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
|
|
//[cfail1]~| ERROR type annotations needed
|
|
//[cfail1]~| ERROR type annotations needed
|
|
}
|