rust/tests/ui/parser/several-carriage-returns-in-doc-comment.rs
2023-01-11 09:32:08 +00:00

11 lines
329 B
Rust

// Issue #62863
// ignore-tidy-cr
// Note: if you see ^M in this file, that's how your editor renders literal `\r`
/// This do
c comment contains
three isolated `\r`
symbols
//~^ ERROR bare CR not allowed in doc-comment
//~| ERROR bare CR not allowed in doc-comment
//~| ERROR bare CR not allowed in doc-comment
fn main() {}