]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/MissingMethod.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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