blob: a002f09be3b4eb89e2e498215d95eceb52e0872b [file] [log] [blame]
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;
}