difftastic/sample_files/comments_after.rs

18 lines
218 B
Rust

// Unchanged comment.
f1();
// Changing a comment word.
f2();
// A single comment about something.
f3();
/* A multiline comment
* whose indentation changes.
*/
/** A doc comment.
*
* This line has changed.
*/