blob: d82b3f08f74ee8f40e2e902e475c605190244486 [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=inference*/
library test;
class C<T extends num> {
T a;
void op(int b) {
T r1 = a /*@target=num::+*/ + b;
T r2 = a /*@target=num::-*/ - b;
T r3 = a /*@target=num::**/ * b;
}
void opEq(int b) {
a += b;
a -= b;
a *= b;
}
}
main() {}