Blame testing/048_showinit.c

Packit 1c1d7e
// objective: test the \showinit command
Packit 1c1d7e
// check: 048__showinit_8c.xml
Packit 1c1d7e
// config: MAX_INITIALIZER_LINES = 0
Packit 1c1d7e
Packit 1c1d7e
/** \file */
Packit 1c1d7e
Packit 1c1d7e
/** a variable with initializer hidden due to MAX_INITIALIZER_LINES */
Packit 1c1d7e
int var1 = 10;
Packit 1c1d7e
Packit 1c1d7e
/** a variable with initializer visible 
Packit 1c1d7e
 *  \showinitializer
Packit 1c1d7e
 */
Packit 1c1d7e
int var2 = 20;