mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-20 08:32:50 -06:00
more friendly error message when renaming patterns
This commit is contained in:
14
testsuite/compiler/renamer/funpatt.gf
Normal file
14
testsuite/compiler/renamer/funpatt.gf
Normal file
@@ -0,0 +1,14 @@
|
||||
abstract funpatt = {
|
||||
|
||||
-- this should raise error
|
||||
-- we cannot pattern match on functions
|
||||
|
||||
cat D ;
|
||||
fun D1 : D ;
|
||||
D2 : D ;
|
||||
|
||||
fun d : D -> Int ;
|
||||
def d D1 = 1 ;
|
||||
d D2 = 2 ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user