source: CIVL/examples/languageFeatures/arrayCompat6.cvl

main
Last change on this file was 7320499, checked in by Alex Wilton <awilton@…>, 9 months ago

Added arrayCompat JUnit tests.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5978 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 153 bytes
Line 
1int main() {
2 int a[2][2] = (int[2][2])$lambda(int i,j) 0;
3 int b[][] = (int[3][3])$lambda(int i,j) 0;
4 b = a;
5 b[0] = (int[10])$lambda(int i) 10;
6}
Note: See TracBrowser for help on using the repository browser.