- Try to do better pretty printing when array elements are individually
[bpt/coccinelle.git] / tests / typedef3.res
1 typedef struct bluecard_info_t {
2 struct pcmcia_device *p_dev;
3 } foo;
4
5 static void should_work(foo *info)
6 {
7 unsigned int iobase = info->p_dev->io.BasePort1;
8 }
9
10 static void does_work(struct bluecard_info_t *info)
11 {
12 unsigned int iobase = info->p_dev->io.BasePort1;
13 }