blob: a4dd2e42fc1d8f4a13a936c26cf45b80f6e7a416 [file] [log] [blame]
syntax = "proto3";
package foo;
message TestSpecialCharacters {
// test special characters (shouldn't escape): ;,/?:&=+$-_.!~*'()
// test open comment (shouldn't escape): /*
// test close comment (should escape): */
// test at-sign (should escape): @foo
// test forward slash as first character on a newline:
///
string a = 1;
///
// test forward slash as first character on first line
string b = 2;
}