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