remove multiline comments

closes #161
This commit is contained in:
Andrew Kelley
2016-07-27 23:26:12 -07:00
parent 8552d7fd19
commit 1fa0cabf9d
7 changed files with 106 additions and 193 deletions

View File

@@ -4,22 +4,11 @@ const str = std.str;
const cstr = std.cstr;
const other = @import("other.zig");
#attribute("test")
fn empty_function() {}
/**
* multi line doc comment
*/
// normal comment
/// this is a documentation comment
/// doc comment line 2
#attribute("test")
fn comments() {
comments_f1(/* mid-line comment /* nested */ */ "OK\n");
}
fn comments_f1(s: []u8) {}
fn empty_function_with_comments() {}
#attribute("test")