about summary refs log blame commit diff stats
path: root/cpp/002main.test.cc
blob: 1f77ab392e17b19d53090d0b2f9d38b4933f9622 (plain) (tree)
1
2
3
4
5
6
7
                     
                           




                                            
void test_literal() {
  compile("recipe main [\n"
          "  1:integer <- copy 23:literal\n"
          "]\n");
  run("main");
  CHECK_EQ(Memory[1], 23);
}