mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 17:49:22 -04:00
4 lines
165 B
C
4 lines
165 B
C
// RUN: %clang_cc1 %s -verify -fsyntax-only
|
|
|
|
int a;
|
|
struct {int x;} x = a; // expected-error {{incompatible type initializing 'int', expected 'struct <anonymous>'}}
|