blob: 8e323035b0ce64c6f7206b0c152a4d81061a76f0 [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.
// @dart=2.9
// ignore: import_internal_library
import 'dart:_internal';
@patch
class Class {
Class._internal({bool value = false});
@patch
Class.patched() : this._internal();
}
@patch
class SubClass {
SubClass._internal() : super._internal(value: true);
@patch
SubClass.patched() : this._internal();
}