blob: 84d665c3c2853097019d3fda71c6cd44e8f6f0c7 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wpointer-arith" }
double X(const double x) { return x; }
double Y() { return 1.0; }
double Z() { return 2.0; }
struct A {
void bar() { }
void foo() { }
};
typedef void (A::*pmf)();
static int mememe = &A::foo - &A::bar; // { dg-warning "" }
pmf b = &A::foo-1; // { dg-warning "" }
int main() {
double y;
y=X(Y-Z); // { dg-warning "" }
}