blob: dee3c112f32661426bf8ef58d9ff8d0c722872d2 [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(T b) {
T r1 = a /*@target=num::+*/ + b;
T r2 = a /*@target=num::-*/ - b;
T r3 = a /*@target=num::**/ * b;
}
void opEq(T b) {
a += b;
a -= b;
a *= b;
}
}
main() {}