1 public class AssertErrorMsg {2 3 public static void main(String [] args){4 int x = 10;5 int y = 11;6 assert x == 10 : x > y;7 }8 }9