blob: 455ddcc2d36f712f5ab92bfb3cfcc13f3d78ccd1 [file] [log] [blame]
# Copyright (c) 2017, 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.md file.
main.dart.patch: |
// Regression test for a syntax error in a field becomes a function that is
// subsequently removed.
class C {
<<<< {"messages":[],"hasCompileTimeError":1}
int sync*;
==== {"messages":[],"hasCompileTimeError":1}
// TODO(ahe): Should just expect [], no compile-time error
sync();
==== {"messages":[],"hasCompileTimeError":1}
// TODO(ahe): Should just expect [], no compile-time error
>>>>
}
main() {
new C();
}