]> gerrit.simantics Code Review - simantics/platform.git/blob - WrongInstanceMethod.scl
ffbd7aaf2ffdc9a328bb5c4b29638e7dc0afb3bb
[simantics/platform.git] / WrongInstanceMethod.scl
1
2 class Foo a where
3     foo :: a
4     
5 instance Foo Integer where
6     foo = foo
7     bar = foo
8     
9 main = "Not to be executed."
10 --
11 7:5-7:14: Method bar is not defined in the type class Foo.