OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
* g++.dg/parse/repo1.C: Use cleanup-repo-files.
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
repo1.C
1
// { dg-options "-frepo" }
2
3
struct A {
4
A();
5
};
6
7
A::A() {}
8
9
template <typename T>
10
struct B : public A {
11
B() {} // { dg-bogus "" }
12
};
13
14
B<int> b;
15
16
int main () {}
17
18
// { dg-final { cleanup-repo-files } }