]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/MissingMethod.scl
Merge commit 'e87f096'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / MissingMethod.scl
1 class FooBar a where\r
2     foo :: a -> a\r
3     bar :: a -> a\r
4     \r
5 instance FooBar Integer where\r
6     foo x = x\r
7 \r
8 main = "Not to be executed."\r
9 --\r
10 5:1-6:14: Method bar is not defined.\r
11     \r
12 \r