summaryrefslogtreecommitdiff
path: root/test/SemaCXX/increment-decrement.cpp
blob: 11b7d1e12f4e1845007c8ce389669e05fa39948a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
}