OSDN Git Service

PR c++/30022
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vector5.C
1 // PR c++/30022
2 // { dg-do compile }
3
4 void foo()
5 {
6   int __attribute__((vector_size(8))) v;
7   v = 1/v;  // { dg-error "invalid operands of types" }
8 }