view gcc/testsuite/g++.dg/diagnostic/extern-initialized.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

extern int i __attribute__((unused)) = 0;  // { dg-warning "12:.i. initialized and declared .extern." }

void foo()
{
  extern int i __attribute__((unused)) = 0;  // { dg-error "14:.i. has both .extern. and initializer" }
}