| Index: tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart b/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
|
| index 685949323eb5a56a39e3b17940a6edac57634161..bd09643a2eb59f6308f6d6a0b3fd66916c3f44cf 100644
|
| --- a/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
|
| @@ -11,7 +11,7 @@ class A native "*A" {
|
|
|
| factory A.fromString(String s) => _construct(s.length);
|
|
|
| - factory A.nativeConstructor(int a, int b) native @'return makeA(a+b);';
|
| + factory A.nativeConstructor(int a, int b) native r'return makeA(a+b);';
|
|
|
| static A _construct(v) { return makeA(v); }
|
|
|
|
|