├── .ghci ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── should-not-typecheck.cabal ├── src └── Test │ └── ShouldNotTypecheck.hs ├── stack.yaml └── test └── ShouldNotTypecheckSpec.hs /.ghci: -------------------------------------------------------------------------------- 1 | :l src/Test/ShouldNotTypecheck.hs 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /should-not-typecheck.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/should-not-typecheck.cabal -------------------------------------------------------------------------------- /src/Test/ShouldNotTypecheck.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/src/Test/ShouldNotTypecheck.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | flags: {} 2 | packages: 3 | - '.' 4 | extra-deps: [] 5 | resolver: nightly-2015-09-07 6 | -------------------------------------------------------------------------------- /test/ShouldNotTypecheckSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRogers/should-not-typecheck/HEAD/test/ShouldNotTypecheckSpec.hs --------------------------------------------------------------------------------