4495766362
From-SVN: r23760
28 lines
342 B
C
28 lines
342 B
C
// Build don't link:
|
|
// GROUPS passed conversions
|
|
// cvt file
|
|
// Message-Id: <1166.9307131600@ace.eng.cam.ac.uk>
|
|
// From: ajp@eng.cam.ac.uk
|
|
// Date: Tue, 13 Jul 93 17:00:44 BST
|
|
|
|
|
|
class B {};
|
|
|
|
class A {
|
|
public:
|
|
operator const B*() const {
|
|
return b;
|
|
}
|
|
private:
|
|
B* b;
|
|
};
|
|
|
|
|
|
int main()
|
|
{
|
|
A a;
|
|
if (a!=0) {
|
|
}
|
|
}
|
|
|