1/*
2 * This test is primarily meant to check the compiler's handling of typos
3 * at various locations.
4 */
5
6require "fileinto";
7
8/*
9 * Missing semicolon
10 */
11
12fileinto "frop"
13keep;
14
15/* Other situations */
16
17fileinto "frup"
18true;
19
20fileinto "friep"
21snot;
22
23/*
24 * Forgot tag colon
25 */
26
27if address matches "from" "*frop*" {
28	stop;
29}
30