]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/WrongDefaultMethod.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 / WrongDefaultMethod.scl
1
2 class Foo a where
3     foo :: a
4     bar = foo
5     
6 main = "Not to be executed."
7 --
8 4:5-4:14: Method bar is not defined in this class.