repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
dependent-expr2.C
blob
06f056b4140ecb3e942ea3d826cbe27d42d42ba9
1
// { dg-do compile }
2
3
// Copyright (C) 2003 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 2 Aug 2003 <nathan@codesourcery.com>
5
6
// PR 11704. ICE
7
8
struct A
9
{
10
int foo()
11
{
12
return 5;
13
}
14
};
15
16
template <class T> // If B is not template it works
17
struct B
18
{
19
bool bar(A& a)
20
{
21
return a.foo == 0; // { dg-error "" "" }
22
}
23
};