1 /* { dg-do compile } */
2 /* { dg-options "" } */
3 
4 void
f(void)5 f (void)
6 {
7    int x = 1;
8    asm ("" : "" (x), "" (x)); /* { dg-error "output operand constraint lacks" } */
9 }
10