]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MissingMethod.scl
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / MissingMethod.scl
1 class FooBar a where
2     foo :: a -> a
3     bar :: a -> a
4     
5 instance FooBar Integer where
6     foo x = x
7
8 main = "Not to be executed."
9 --
10 5:1-6:14: Method bar is not defined.
11     
12