blob: 5f527601de4c259a2de5456481a6fa570c7e43aa [file] [log] [blame]
// Copyright (c) 2017, 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.
/*@testedFeatures=checks*/
library test;
class B {
covariant num /*@covariance=explicit*/ x;
}
class C {
int x;
}
class /*@forwardingStub=void set x(covariance=(explicit) num _)*/ D extends C
implements B {}
void main() {}