d29de343fe
From-SVN: r35881
22 lines
291 B
C
22 lines
291 B
C
// GROUPS passed copy-ctors
|
|
extern "C" int printf (const char *, ...);
|
|
int count = 0;
|
|
|
|
class C {
|
|
public:
|
|
C (int) { count++; }
|
|
operator int () { return 0; }
|
|
};
|
|
|
|
int
|
|
main ()
|
|
{
|
|
C c1 (1);
|
|
C c2 (c1);
|
|
|
|
if (count != 1)
|
|
{ printf ("FAIL\n"); return 1; }
|
|
else
|
|
printf ("PASS\n");
|
|
}
|