rust/tests/ui/parser/issue-105634.rs

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

9 lines
105 B
Rust
Raw Normal View History

2022-12-16 13:11:08 +00:00
// check-pass
fn main() {
let _a = ..;
let _b = ..=10;
let _c = &..;
let _d = &..=10;
}