aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/operator2.C
blob: 477616086a2aa7ebf47069844fa42e1b02e11fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PRMS Id: 6018
// Build don't link:

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*()"
}