diff options
author | Araq <rumpf_a@web.de> | 2014-03-27 19:43:17 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-27 19:43:17 +0100 |
commit | 76ef7529575d9cff2cb97117fe9b000f2af928bd (patch) | |
tree | eddc69a46914d06ba7d3827ae701fddd086cef56 /tests/vm | |
parent | 3365b42bbe5e09f8e8a739597ae5e49e2ff2c259 (diff) | |
download | Nim-76ef7529575d9cff2cb97117fe9b000f2af928bd.tar.gz |
made some tests green
Diffstat (limited to 'tests/vm')
-rw-r--r-- | tests/vm/trgba.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/trgba.nim b/tests/vm/trgba.nim index ec79f6aca..b1d94702f 100644 --- a/tests/vm/trgba.nim +++ b/tests/vm/trgba.nim @@ -6,7 +6,7 @@ discard """ #bug #1009 type - TAggRgba8* = array[4, byte] + TAggRgba8* = array[4, Byte] template R*(self: TAggRgba8): Byte = self[0] template G*(self: TAggRgba8): Byte = self[1] |