You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
300 B
26 lines
300 B
static void unused_function();
|
|
|
|
#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;
|
|
}
|