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
/
lookup
/
scoped2.C
blob
08882d97438b99667f0ea0a33f1f1db9ce764155
1
// { dg-do compile }
2
3
// Copyright (C) 2002 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 16 Sep 2002 <nathan@codesourcery.com>
5
6
// Seg faulted.
7
8
struct Base
9
{
10
};
11
12
struct Derived : Base
13
{
14
void Foo ()
15
{
16
Base::Baz (); // { dg-error "is not a member" "" }
17
18
};
19
};