summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/operator2.C
blob: 892ed3f1df37f0ac358d3a410d73b6e3f1f6ed86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }
// PRMS Id: 6018

class string {
    char *p;
public:
    string(const char* s) ;// { p == s; }
    operator const char*() ;// { return s; }
};
 
void f4(string& s)
{
        *s;     // implies "s.operator const char*()"
}