mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
13 lines
160 B
Plaintext
13 lines
160 B
Plaintext
|
netcdf test_vlen2 {
|
||
|
types:
|
||
|
compound x_base_t {
|
||
|
int x ;
|
||
|
}; // x_base_t
|
||
|
x_base_t(*) x_t ;
|
||
|
dimensions:
|
||
|
d3 = 3 ;
|
||
|
d2 = 2 ;
|
||
|
variables:
|
||
|
x_t x(d3, d2) ;
|
||
|
}
|