blob: 117b0f27746e321c8bf59eadcb4e7656375b3530 [file] [log] [blame]
/*
* Copyright (c) 2016, 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.
*/
/**
* @assertion
* Description Operator Associativity Precedence
* Assignment ~/= Right 1
* @description Test that '~/=' assignment operator has lowest precedence.
* Compare with cascade '..' (precedence 2) and conditional 'e1 ? e2 : e3'
* (precedence 3) operators
* @author sgrekhov@unipro.ru
*/
import "../../../Utils/expect.dart";
String log = "";
class C {
int get s => 7;
void set s(int val) {
log += val.toString();
}
}
main() {
C c = new C();
c .. s ~/= 2 .. s ~/= 3 .. s ~/= 4;
Expect.equals("321", log);
log = "";
c.s ~/= 1 == 2 ? 2 : 3;
Expect.equals("2", log);
}