• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package foo;
4
5message TestSpecialCharacters {
6  // test special characters (shouldn't escape): ;,/?:&=+$-_.!~*'()
7  // test open comment (shouldn't escape): /*
8  // test close comment (should escape): */
9  // test at-sign (should escape): @foo
10  // test forward slash as first character on a newline:
11  ///
12  string a = 1;
13
14  ///
15  // test forward slash as first character on first line
16  string b = 2;
17}
18