3d1dcd9bfd
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
15 lines
280 B
C++
15 lines
280 B
C++
// 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 qualifiers}}
|
|
const int &decfail = --i; // expected-error {{drops qualifiers}}
|
|
|
|
// PR7794
|
|
void f0(int e) {
|
|
++(int&)e;
|
|
}
|