Add missing test data to extra-source-files

This commit is contained in:
Daniel Gröber 2015-08-06 04:16:21 +02:00
parent 2b7d25c7a5
commit 2c9b79449a
2 changed files with 8 additions and 0 deletions

View File

@ -71,6 +71,7 @@ Extra-Source-Files: ChangeLog
test/data/pattern-synonyms/*.hs
test/data/quasi-quotes/*.hs
test/data/template-haskell/*.hs
test/data/target/*.hs
test/data/check-missing-warnings/*.hs
Library

7
test/data/target/Cpp.hs Normal file
View File

@ -0,0 +1,7 @@
{-# LANGUAGE CPP #-}
#undef NOTHING
#ifdef NOTHING
module WRONG_MODULE where
#else
module Cpp where
#endif