rust/tests/pretty/issue-73626.rs

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

35 lines
516 B
Rust
Raw Normal View History

fn main(/*
---
*/) {
let x /* this is one line */ = 3;
let x /*
* this
* is
* multiple
* lines
*/ = 3;
let x = /*
* this
* is
* multiple
* lines
* after
* the
* =
*/ 3;
let x /*
* this
* is
* multiple
* lines
* including
* a
* blank
* line
*/ = 3;
}