1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00

Added initial support for special BYTE0() and BYTE1() unary operators giving access to specific bytes. #221

This commit is contained in:
jespergravgaard 2021-04-05 00:30:04 +02:00
parent 945d8a1113
commit 03d5d9621a

View File

@ -47,12 +47,12 @@ public class TestPrograms {
@Test
public void testOperatorByte1() throws IOException, URISyntaxException {
compileAndCompare("operator-byte1.c", log());
compileAndCompare("operator-byte1.c");
}
@Test
public void testOperatorByte0() throws IOException, URISyntaxException {
compileAndCompare("operator-byte0.c", log());
compileAndCompare("operator-byte0.c");
}
@Test