blob: d35a996e09abf65ec52c6a28c4973b1dad5475c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// { dg-do run }
// GROUPS passed conversions
// cvt file
// Message-Id: <9301071708.AA03432@muresh.et.tudelft.nl>
// From: stravers@muresh.et.tudelft.nl (Paul Stravers)
// Subject: conversion method never called
// Date: Thu, 7 Jan 93 18:08:33 +0100
#include <stdio.h>
class test
{
double d;
int i;
public:
test(double dd,int ii) {d=dd; i=ii;} // constructor
operator int&() {return i;} // define a conversion from test to int&
int& geti() {return i;} // same thing, but different
};
int main()
{
test t(3.14, 5); // Create an object t of class "test"
int x = (int&)t; // This should call operator int&() but it does not ...
int y = t.geti(); // x and y should both be 5 ...
if (x == 5 && y == 5)
printf ("PASS\n");
else
{ printf ("FAIL\n"); return 1; }
}
|