blob: 5005afca61f28eb8b3498c50c964361db60dbfaa [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.
// @dart = 2.9
/// @assertion Space, tab and line terminators characters are allowed between
/// tokens.
/// @description Checks that different whitespace characters and line terminators
/// are allowed for additive expressions.
/// @author hlodvig
import '../../../Utils/expect.dart';
main() {
int i = 0;
i = i + 1;
i = i + 1;
i
=
i
+
1;
Expect.equals(3, i);
}