aboutsummaryrefslogtreecommitdiff
path: root/grammar/lalr1_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'grammar/lalr1_test.go')
-rw-r--r--grammar/lalr1_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammar/lalr1_test.go b/grammar/lalr1_test.go
index beb2707..94dfd65 100644
--- a/grammar/lalr1_test.go
+++ b/grammar/lalr1_test.go
@@ -10,7 +10,7 @@ import (
func TestGenLALR1Automaton(t *testing.T) {
// This grammar belongs to LALR(1) class, not SLR(1).
src := `
-%name test
+#name test;
S: L eq R | R;
L: ref R | id;