Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / typedef3.c
1 typedef struct bluecard_info_t {
2 dev_link_t link;
3 } foo;
4
5 static void should_work(foo *info)
6 {
7 unsigned int iobase = info->link.io.BasePort1;
8 }
9
10 static void does_work(struct bluecard_info_t *info)
11 {
12 unsigned int iobase = info->link.io.BasePort1;
13 }