You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
300 B
15 lines
300 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
volatile int i;
|
|
|
|
const int &inc = i++;
|
|
const int &dec = i--;
|
|
|
|
const int &incfail = ++i; // expected-error {{drops 'volatile' qualifier}}
|
|
const int &decfail = --i; // expected-error {{drops 'volatile' qualifier}}
|
|
|
|
// PR7794
|
|
void f0(int e) {
|
|
++(int&)e;
|
|
}
|