blob: 07db1d23ccce5acbc38d9eb77cdb732a5653cf12 [file] [log] [blame]
// Copyright (c) 2013, 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.
// @dart = 2.9
import '../compiler_annotations.dart';
class A {
@DontInline()
A([a]) {
() => 42;
if (a != null) throw 'Test failed';
}
}
class B extends A {
B();
}
main() {
new B();
}