1 package com.twisters;
2 public class NoConstructor {
3
4 boolean isConstructor = false; //No changes permitted to this line
5 {isConstructor = true;}
6
7 /* No Code may be added or changed in main*/
8 public static void main(String[] args) {
9 NoConstructor noConstructor = new NoConstructor();
10 System.out.println(noConstructor.isConstructor); //Prints true
11 }
12 }
13