blob: 83ec80ad0752e7107f59988d87165579db9fc220 [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
* stringLiteral:
* (multilineString | singleLineString)+
* ;
* multilineString:
* '"""' stringContentTDQ* '"""' |
* ''''' stringContentTSQ* ''''' |
* '"""' (~ '"""')* '"""' |
* ''''' (~ ''''')* '''''
* ;
* stringContentTDQ:
* ~( '\' | '"""' | '$') |
* stringInterpolation
* ;
* stringContenTSQ:
* ~( '\' | ''''' | '$') |
* stringInterpolation
* ;
* @description Checks that it is a compile-time error when a raw multi-line
* string literal begins with double quotes and ends with single ones.
* @compile-error
* @author msyabro
*/
main() {
r"""
incorrect string
''';
}