/*** cannot declare field with type void
* COMP 520
* Type checking
*/
class fail45 {
public static void main(String[] args) { }
void x; // incorrect type for a field
}