We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87bf07 commit 8bf258eCopy full SHA for 8bf258e
core-tests/test-everything.sh
@@ -47,7 +47,9 @@ bower i purescript-prelude \
47
purescript-parallel \
48
purescript-proxy \
49
purescript-semirings \
50
- purescript-math
+ purescript-math \
51
+ purescript-generics
52
-../dist/build/psc/psc 'bower_components/purescript-*/src/**/*.purs' \
53
+../dist/build/psc/psc tests/*/*.purs \
54
+ 'bower_components/purescript-*/src/**/*.purs' \
55
--ffi 'bower_components/purescript-*/src/**/*.js'
core-tests/tests/generic-deriving/Main.purs
@@ -0,0 +1,13 @@
1
+module GenericDeriving where
2
+
3
+import Prelude
4
5
+import Data.Generic
6
7
+data A
8
+ = A Number String
9
+ | B Int
10
+ | C (Array A)
11
+ | D { a :: A }
12
13
+instance genericA :: Generic A
0 commit comments