1 #define TEST_SIZE 32
2 
3 void my_func(char *, int, int)
4 	__attribute__((__bounded__(__minbytes__,1,TEST_SIZE)));
5 
6 int main(int argc, char **argv) {
7 	return 1;
8 }
9