@@ -276,7 +276,7 @@ LoweringError:
276276let
277277 local x
278278 global x
279- # └──────┘ ── Variable `x` declared both local and global
279+ # ╙ ── Variable `x` declared both local and global
280280end
281281
282282# #######################################
288288LoweringError:
289289function f (x)
290290 local x
291- # └─────┘ ── local variable name `x` conflicts with an argument
291+ # ╙ ── local variable name `x` conflicts with an argument
292292end
293293
294294# #######################################
300300LoweringError:
301301function f (x)
302302 global x
303- # └──────┘ ── global variable name `x` conflicts with an argument
303+ # ╙ ── global variable name `x` conflicts with an argument
304304end
305305
306306# #######################################
313313LoweringError:
314314function f ((x,))
315315 global x
316- # └──────┘ ── Variable `x` declared both local and global
316+ # ╙ ── Variable `x` declared both local and global
317317end
318318
319319# #######################################
325325LoweringError:
326326function f (:: T ) where T
327327 local T
328- # └─────┘ ── local variable name `T` conflicts with a static parameter
328+ # ╙ ── local variable name `T` conflicts with a static parameter
329329end
330330
331331# #######################################
337337LoweringError:
338338function f (:: T ) where T
339339 global T
340- # └──────┘ ── global variable name `T` conflicts with a static parameter
340+ # ╙ ── global variable name `T` conflicts with a static parameter
341341end
342342
343343# #######################################
@@ -352,7 +352,7 @@ LoweringError:
352352function f (:: T ) where T
353353 let
354354 local T
355- # └─────┘ ── local variable name `T` conflicts with a static parameter
355+ # ╙ ── local variable name `T` conflicts with a static parameter
356356 end
357357end
358358
@@ -368,7 +368,7 @@ LoweringError:
368368function f (:: T ) where T
369369 let
370370 global T
371- # └──────┘ ── global variable name `T` conflicts with a static parameter
371+ # ╙ ── global variable name `T` conflicts with a static parameter
372372 end
373373end
374374
0 commit comments