diff options
author | alaviss <alaviss@users.noreply.github.com> | 2019-05-30 12:34:54 +0700 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-05-30 07:34:54 +0200 |
commit | 1d00f7f9d73edb79cc581ca9b49fb038573c01d5 (patch) | |
tree | 1c08514f5d784c70de084b2d22b5453f15f1b30a /tests/errmsgs | |
parent | 5b27b263fd76484fa6251ccd29520c2764b55818 (diff) | |
download | Nim-1d00f7f9d73edb79cc581ca9b49fb038573c01d5.tar.gz |
travis: cleanup & add 32-bit Linux testing (#11337)
Diffstat (limited to 'tests/errmsgs')
-rw-r--r-- | tests/errmsgs/twrong_at_operator.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/errmsgs/twrong_at_operator.nim b/tests/errmsgs/twrong_at_operator.nim index b6b3d101f..5413515cb 100644 --- a/tests/errmsgs/twrong_at_operator.nim +++ b/tests/errmsgs/twrong_at_operator.nim @@ -1,14 +1,15 @@ discard """ errormsg: "type mismatch: got <array[0..0, type int]>" -line: 15 +line: 16 nimout: ''' -twrong_at_operator.nim(15, 30) Error: type mismatch: got <array[0..0, type int]> +twrong_at_operator.nim(16, 30) Error: type mismatch: got <array[0..0, type int]> but expected one of: proc `@`[T](a: openArray[T]): seq[T] proc `@`[IDX, T](a: array[IDX, T]): seq[T] expression: @[int] ''' +disabled: "32bit" """ # bug #7331 |