Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/array.cfa

    r6ca0dab r2ede686  
    1 //                               -*- Mode: C -*-
    2 //
     1//                               -*- Mode: C -*- 
     2// 
    33// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
    44//
    55// The contents of this file are covered under the licence agreement in the
    66// file "LICENCE" distributed with Cforall.
    7 //
     7// 
    88// array.cfa -- test array declarations
    9 //
     9// 
    1010// Author           : Peter A. Buhr
    1111// Created On       : Tue Feb 19 21:18:06 2019
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Sun Sep 27 09:05:40 2020
    14 // Update Count     : 4
    15 //
     13// Last Modified On : Tue Feb 19 21:18:46 2019
     14// Update Count     : 1
     15// 
    1616
    17 int a1[0];
     17int a1[];
    1818//int a2[*];
    1919//double a4[3.0];
    2020
    21 int m1[0][3];
     21int m1[][3];
    2222//int m2[*][*];
    2323int m4[3][3];
     
    4949}
    5050
    51 int main() {
    52         #if !defined(NO_COMPILED_PRAGMA)
    53                 #pragma message( "Compiled" )   // force non-empty .expect file
    54         #endif
    55 }
     51int main() {}
    5652
    5753// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.