blob: dd9d519abdcb1e5be033897304c256c12d9fed64 [file] [log] [blame] [edit]
// Copyright (c) 2025, 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.
main() {
int b = 1;
int c = 2;
int d = 3;
int e = 4;
int f = 5;
int g = 6;
int as = 7;
a(b < c, d < e, f < g, as >>> (1));
}
void a(bool x, bool y, bool z1, int z2) {
print("$x $y $z1 $z2");
}