OSDN Git Service

PR target/26445
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / linkage1.C
1 // { dg-do compile }
2
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 9 Dec 2001 <nathan@nathan@codesourcery.com>
5
6 // PR 51
7 // This example snippet is from the ISO C++ standard, sect 7.5 para 4:
8
9 extern "C" typedef void FUNC_c();
10
11 class C {
12   public:
13   static FUNC_c* q;
14 };