#![allow(unused)]
#![deny(improper_ctypes)]
#[repr(C)]
union U {
a: u8,
}
union W {
extern "C" {
static FOREIGN1: U; // OK
static FOREIGN2: W; //~ ERROR `extern` block uses type `W`
fn main() {}