const view types; fixes some cases from https://github.com/nim-lang/Nim/issues/15428 (#15488)

This commit is contained in:
Andreas Rumpf
2020-10-05 18:31:46 +02:00
committed by GitHub
parent 1e28cea0d1
commit 4e438f9096
7 changed files with 94 additions and 47 deletions

View File

@@ -0,0 +1,26 @@
discard """
cmd: "nim c --experimental:views $file"
output: '''(data: [1, 2, 3], other: 4)
[1, 20, 3]'''
"""
type
Foo = object
data: openArray[int]
other: int
const
c = Foo(data: [1, 2, 3], other: 4)
c2 = Foo(data: [1, 20, 3], other: 4)
proc `$`(x: openArray[int]): string =
result = "["
for i in x:
if result.len > 1: result.add ", "
result.add $i
result.add "]"
echo c
echo c2.data