@@ -117,7 +117,6 @@ end Set
117117syntax "{{" term,* "}}" : term
118118
119119-- `syntax` コマンドは記法の解釈方法を決めていないので、エラーになる
120- #guard_msgs (drop warning) in --#
121120#check_failure {{2 , 3 }}
122121
123122-- 集合の波括弧記法をどう解釈するかのルールを定める
@@ -150,7 +149,6 @@ namespace NestedList
150149 syntax "《" term,* "》" : term
151150
152151 -- `syntax` コマンドは記法の解釈方法を決めていないので、エラーになる
153- #guard_msgs (drop warning) in --#
154152 #check_failure 《1 , 《2 , 3 》, 4 》
155153
156154 macro_rules
@@ -186,11 +184,8 @@ namespace ListComp
186184 syntax "[" term " | " compClause,* "]" : term
187185
188186 -- `syntax` コマンドは記法の解釈方法を決めていないので、エラーになる
189- #guard_msgs (drop warning) in --#
190187 #check_failure [x | for x in [1 , 2 , 3 , 4 , 5 ]]
191- #guard_msgs (drop warning) in --#
192188 #check_failure [x | if x < 2 ]
193- #guard_msgs (drop warning) in --#
194189 #check_failure [x | for x in [1 , 2 , 3 ], if x < 2 ]
195190
196191 macro_rules
@@ -252,11 +247,8 @@ namespace Expr
252247 syntax :max "(" expr ")" : expr
253248
254249 -- `syntax` コマンドは記法の解釈方法を決めていないので、エラーになる
255- #guard_msgs (drop warning) in --#
256250 #check_failure expr!{1 + 2 }
257- #guard_msgs (drop warning) in --#
258251 #check_failure expr!{1 * 2 }
259- #guard_msgs (drop warning) in --#
260252 #check_failure expr!{(1 + 2 ) * 3 }
261253
262254 macro_rules
0 commit comments