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.
20 lines
339 B
20 lines
339 B
! RUN: %f18 -funparse %s 2>&1 | FileCheck %s
|
|
|
|
#define pmk
|
|
#ifdef pmk // comment
|
|
! CHECK: t1
|
|
real t1
|
|
#endif // comment
|
|
#undef pmk ! comment
|
|
#ifndef pmk ! comment
|
|
! CHECK: t2
|
|
real t2
|
|
#endif // comment
|
|
#if 0 /* C comment */ + 0
|
|
! CHECK-NOT: misinterpreted
|
|
# error misinterpreted #if
|
|
#else // comment
|
|
! CHECK: END PROGRAM
|
|
end
|
|
#endif ! comment
|