blob: 256e2a014fc836e8f7f2787f312d9007f8c771e1 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
syntax = "proto2";
package default_value_escape;
message F {
optional string a = 1 [default = "a\nb"];
optional string b = 2 [default = "a'b"];
optional string c = 3 [default = "a\"b"];
optional string d = 4 [default = "a$b"];
optional string e = 5 [default = "a\\b"];
optional string f = 6 [default = "a\0b"];
optional string g = 7 [default = "\uD83C\uDDFA\uD83C\uDDF8"];
}