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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
member8.C
blob
074c65543041caf87f0d49aed9141ec3f7974c1a
1
// PR c++/35138
2
// { dg-do compile }
3
4
namespace N1 { struct A { }; }
5
namespace N2 { struct A { }; }
6
using namespace N1;
7
using namespace N2;
8
9
template <typename T> int
10
foo (T const &t)
11
{
12
return t.A;
13
}
14
15
struct B
16
{
17
int A;
18
};
19
20
int
21
main ()
22
{
23
B b;
24
foo (b);
25
}