Example c test: ``` int bar() { int foo[2][2] = {{1, 2}, {3, 4}}; return foo[1][1]; } ```
Example c test: