// test quoted keyword usage
int `catch`;

struct {
    int `type`;
    int `struct`;
} st;

typedef int `forall`;
`forall` `throw`;

int foo() {
    int w = `catch` + st.`type` + st.`struct` + `throw`;
}

#include <math.h>	// has field name "type"

// Local Variables: //
// compile-command: "../../bin/cfa quoted_keyword.c" //
// End: //
