blob: b296f1bd96436ac5d197099ee4d3fc6b1e0168aa [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 shift expressions.
* @author hlodvig
* @reviewer kaigorodov
*/
main() {
2 << 2;
2 >> 2;
2 >> 2 ;
2 << 2 ;
2
>>
2
;
2
<<
2
;
}