blob: b274515a6d4f953d3fe7b43231611145e9c6ffad [file] [log] [blame]
/*
* Copyright (c) 2011, 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 Space, tab and line terminators characters are allowed between
* tokens.
* @description Checks that different whitespace characters and line terminators
* are allowed in conditional expressions.
* @author hlodvig
* @reviewer kaigorodov
*/
import '../../../Utils/expect.dart';
main() {
int i = 0;
i = (true ? 1 : 0);
Expect.equals(1, i);
i = (true ? 1 : 0);
Expect.equals(1, i);
i = (true
?
1
:
0);
Expect.equals(1, i);
}