repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/34094
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
anon5.C
blob
68a02880b219960757143a2ec87528550c8a715c
1
// PR c++/34094
2
// { dg-do link }
3
// { dg-options "-g" }
4
5
namespace {
6
struct c
7
{
8
static const bool t = 0;
9
};
10
}
11
12
const bool &f()
13
{
14
return c::t; // { dg-error "undefined" }
15
}
16
17
int main(void)
18
{
19
return 0;
20
}
21