
ParseFrontendArgs takes the last OPT_Action_Group option. The other actions are overridden.
10 lines
413 B
C++
10 lines
413 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
// expected-error@+2{{invalid character ')' in raw string delimiter; use PREFIX( )PREFIX to delimit raw string}}
|
|
// expected-error@+1{{expected expression}}
|
|
char const *str1 = R")";
|
|
|
|
// expected-error@+2{{invalid newline character in raw string delimiter; use PREFIX( )PREFIX to delimit raw string}}
|
|
// expected-error@+1{{expected expression}}
|
|
char const* str2 = R"";
|