多选题
Given:
1. class Hotel {
2. static void doStuff(int x) {
3. assert (x < 0) : "hotel";
4. }
5. }
6. public class Motel13 extends Hotel {
7. public static void main(String[] args) {
8. doStuff(-5);
9. int y = 0;
10. assert (y < 0) : "motel";
11. } }
Which of the following revocations will run without exception? (Choose all that apply.)