aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/increment-decrement.cpp
blob: 4f131d76f04686469c45216257238b583c5d0b83 (plain) (blame)
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 'volatile' qualifier}}
const int &decfail = --i; // expected-error {{drops 'volatile' qualifier}}

// PR7794
void f0(int e) {
  ++(int&)e;
}