blob: ccffde991de77af4847f81b79f71a31f0803f3e1 [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.
import 'compiler_annotations.dart';
class A {
@DontInline()
A([a]) {
() => 42;
if (a != null) throw 'Test failed';
}
}
class B extends A {
B();
}
main() {
new B();
}