Initialize Tizen 2.3
[external/ragel.git] / test / include1.rl
1 /*
2  * @LANG: c
3  * @IGNORE: yes
4  *
5  * Provides definitions for include tests.
6  */
7
8 %%{
9         machine include_test_1;
10
11         action A {printf(" a1");}
12         action B {printf(" b1");}
13
14         action NonRef1 {printf(" nr1");}
15
16         a1 = 'a' @A;
17         b1 = 'b' @B;
18 }%%
19
20 %%{
21         machine include_test_2;
22
23         action NonRef2 {printf(" nr2");}
24
25         a2 = 'a' @{printf(" a2");};
26         b2 = 'b' @{printf(" b2");};
27 }%%
28