repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
cast2.C
blob
d447bb4baecbf0bdd0342a311ce15e2530702d34
1
// PR c++/13736
2
3
struct string
4
{
5
string() {}
6
string(const string&) {}
7
string(const char*) {}
8
};
9
10
int main()
11
{
12
string s2(string( (const char*)("")));
13
}