blob: a7329de0d80442edca87cd80f1588387d9dd47ac [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.
class Foo {
foo() {
print("I should be breakable!");
}
}
class Bar {
bar() {
print("I should be breakable too!");
}
}