blob: b13752f6453ab48b8d3c3ea0bcfd830feaf580a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Copyright (C) 2002 Free Software Foundation.
by Hans-Peter Nilsson <hp@axis.com> */
/* { dg-do compile } */
typedef struct
{
unsigned short s;
} t;
struct u
{
t v;
};
int
foo (struct u *uu)
{
int i = ((unsigned int) ((uu->v) & 42)); /* { dg-error "invalid operands to binary" } */
return i;
}
|