blob: b8a824b34b796e32d611c4b024385f5e2959a740 [file] [log] [blame]
fn main() {
// 5042 deals with trailing commas, not the indentation issue of these comments
// When a future PR fixes the inentation issues these test can be updated
let _ = std::ops::Add::add(10, 20
// ...
// ...
);
let _ = std::ops::Add::add(10, 20
/* ... */
// ...
);
let _ = std::ops::Add::add(10, 20
// ...
// ...
);
let _ = std::ops::Add::add(10, 20
// ...
/* ...
*/
);
}