mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-09 13:18:11 +00:00
25 lines
193 B
Nim
25 lines
193 B
Nim
|
|
# bug #9505
|
|
|
|
import std/[
|
|
strutils, ospaths, os
|
|
]
|
|
import pkg/[
|
|
regex
|
|
]
|
|
|
|
proc fun() =
|
|
let a = [
|
|
1,
|
|
2,
|
|
]
|
|
discard
|
|
|
|
proc funB() =
|
|
let a = [
|
|
1,
|
|
2,
|
|
3
|
|
]
|
|
discard
|