8 lines
107 B
Haskell
8 lines
107 B
Haskell
|
{-# LANGUAGE CPP #-}
|
||
|
#undef NOTHING
|
||
|
#ifdef NOTHING
|
||
|
module WRONG_MODULE where
|
||
|
#else
|
||
|
module Cpp where
|
||
|
#endif
|