mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
14 lines
161 B
Plaintext
14 lines
161 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) ;
|
||
|
|
||
|
}
|