summaryrefslogtreecommitdiff
path: root/tests/examplefiles/c/labels.c
blob: 16a652326b25608f458cdef4cae07388411c8401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int id() {
    id:
    int i = true ? 1 : 2;
    default_value:

    switch (2) {
        case Qfalse:
            break;
        case Qnil: case foo: case std::bar():
            return Qnil;
        default:
            return 0;
    }
}