blob: 2841e00fb3b343744808188fe455a08a51d07203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Copyright (C) 2000, 2003 Free Software Foundation, Inc. */
/* { dg-do compile } */
/* Test that multi-line tokens are rejected by the compiler. Source:
Neil Booth. */
const char *p = "line 1
"
""; /* The compiler front end sees this. */
/* { dg-error "17:missing term" "multiline strings" { target *-*-* } 8 } */
/* { dg-error "missing term" "multiline strings" { target *-*-* } 9 } */
|