]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Deriving4.scl
Merge commit 'bf75fd9'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / Deriving4.scl
1 import "Prelude"
2
3 data Foo = Foo Integer Long Double Float
4
5 deriving instance Show Foo
6
7 main = show (Foo (-1) (-1) (-1) (-1))
8 --
9 Foo (-1) (-1) (-1.0) (-1.0)