Files
rust/tests/ui/repeat-expr/dont-require-copy-on-infer.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
70 B
Rust
Raw Normal View History

2025-02-15 02:01:41 +00:00
//@ check-pass
fn main() {
let a: [_; 1] = [String::new(); _];
}