多选题
Given:
2. public class Alamo {
3. public static void main(String[] args) {
4. try {
5. assert(!args[0] .equals("x")) : "kate";
6. } catch(Error e) {System.out.print("ae "); }
7. finally {
8. try {
9. assert(!args[0] .equals("y")) : "jane";
10. } catch(Exception e2) {System.out.print("ae2 ");
11. finally {
12. throw new IllegalArgumentException();
13. } } } }
And, if the code compiles, the invocation:
java -ea Alamo y
Which will be included in the output? (Choose all that apply.)