blob: 244e620898dc2f04ba07edbacb02d10c7e434411 [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 WHITESPACE:
* ('\t' | ' ' | NEWLINE)+
* ;.
* @description Checks that other Unicode whitespaces are not allowed:
* check VERTICAL TAB (U+000B)
* @author hlodvig
* @compile-error
* @reviewer kaigorodov
*/
main() {
var x = 1 ;
}