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
/
opt
/
interface2.C
blob
e75e425893d9a066536fb49eb815922eee41b261
1
// Copyright (C) 2005 Free Software Foundation, Inc.
2
// Contributed by Nathan Sidwell 2 Jun 2005 <nathan@codesourcery.com>
3
4
// PR 21280
5
// Origin: Jens Maurer <jens.maurer@gmx.net>
6
7
#include "interface2.h"
8
9
struct A
10
{
11
A() { }
12
virtual ~A() { }
13
};
14
15
int main()
16
{
17
A a;
18
C<A> c(a);
19
}