26 lines
304 B
C
Raw Normal View History

2024-04-14 22:45:38 +02:00
static void unused_function(void);
2022-08-04 22:12:04 +02:00
#ifdef __SUNPRO_C
KandR(x) int x;
{
return x;
}
#endif
#ifdef __SUNPRO_CC
struct A
{
virtual ~A() throw();
};
struct B : public A
{
virtual ~B() throw(int);
};
#endif
int main(int argc, char* argv[])
{
unsigned int unused_sign_conversion = -1;
return 1;
}