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
/
parse
/
builtin1.C
blob
3b826bd866a52382567ce7bab4e6fefcf68e04f2
1
namespace std {
2
class Base {};
3
}
4
5
struct Derived : public std::Base {
6
operator const char*() const;
7
operator bool(void) const;
8
};
9
10
void log(const char* str);
11
12
void nothing()
13
{
14
Derived temp;
15
log(temp);
16
}