blob: d50e6697a4596366b6d56d0da41af6302310b88e [file] [log] [blame]
// Copyright (c) 2021, 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.12
enum A { a1, a2 }
class B {
void foo({A? x = A.a1}) {}
}
class C implements B {
void foo({A? x}) {}
}
B obj = C();
void main() {
obj.foo();
}