aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/static2.C
blob: 471448d3300aa221fb5193a3c4373f4724dd7d68 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// Based on a test case by Koos Vriezen <koos@polder.ubc.kun.nl>

struct foo {
    static void (*mystatic) ();
};

void bar(foo& t) {
    t.mystatic ();
}