blob: c185900bd67e45aa8ca62364b7426e81a4a5cd16 [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
/// single-quotes string literal does not have the closing triplet.
/// @author msyabro
main() {
// ^
// [cfe] unspecified
// [error line 36, column 0]
// [analyzer] unspecified
// [cfe] unspecified
// [error line 37, column 0]
// [analyzer] unspecified
r'''incorrect string;
}