mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* clean up some test categories * mention exact slice issue * magics into system * move trangechecks into overflow * move tmemory to system * try fix CI * try fix CI * final CI fix
16 lines
291 B
Nim
16 lines
291 B
Nim
import pegs
|
|
|
|
discard parsePeg(
|
|
pattern = "input",
|
|
filename = "filename",
|
|
line = 1,
|
|
col = 23)
|
|
|
|
# bug #12196
|
|
type
|
|
Renderer = object
|
|
|
|
var xs0, x0, xs1, x1: int
|
|
proc init(xs=xs0; x=x0; renderer: Renderer; r: byte) = discard
|
|
init(xs=xs1, x=x1, r=3, renderer=Renderer())
|