netcdf-c/ncdump/cdl4/ref_niltest.cdl
Dennis Heimbigner 98a469b17a Added NIL tests
2013-07-10 20:53:50 +00:00

19 lines
181 B
Plaintext

netcdf ref_niltest {
dimensions:
d1 = 1 ;
d2 = 2 ;
variables:
string v1 ;
string v2(d1) ;
string v3(d2, d2) ;
data:
v1 = NIL ;
v2 = NIL ;
v3 =
NIL, NIL,
NIL, NIL ;
}