xref: /aosp_15_r20/art/test/972-default-imt-collision/smali/Klass.smali (revision 795d594fd825385562da6b089ea9b2033f3abf5a)
1*795d594fSAndroid Build Coastguard Worker# /*
2*795d594fSAndroid Build Coastguard Worker#  * Copyright (C) 2016 The Android Open Source Project
3*795d594fSAndroid Build Coastguard Worker#  *
4*795d594fSAndroid Build Coastguard Worker#  * Licensed under the Apache License, Version 2.0 (the "License");
5*795d594fSAndroid Build Coastguard Worker#  * you may not use this file except in compliance with the License.
6*795d594fSAndroid Build Coastguard Worker#  * You may obtain a copy of the License at
7*795d594fSAndroid Build Coastguard Worker#  *
8*795d594fSAndroid Build Coastguard Worker#  *    http://www.apache.org/licenses/LICENSE-2.0
9*795d594fSAndroid Build Coastguard Worker#  *
10*795d594fSAndroid Build Coastguard Worker#  * Unless required by applicable law or agreed to in writing, software
11*795d594fSAndroid Build Coastguard Worker#  * distributed under the License is distributed on an "AS IS" BASIS,
12*795d594fSAndroid Build Coastguard Worker#  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*795d594fSAndroid Build Coastguard Worker#  * See the License for the specific language governing permissions and
14*795d594fSAndroid Build Coastguard Worker#  * limitations under the License.
15*795d594fSAndroid Build Coastguard Worker#  */
16*795d594fSAndroid Build Coastguard Worker# public class Klass implements Iface1, Iface2 {
17*795d594fSAndroid Build Coastguard Worker#    public static void testMe(Iface2 me) {
18*795d594fSAndroid Build Coastguard Worker#      try {
19*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod0();
20*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod0!");
21*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
22*795d594fSAndroid Build Coastguard Worker#      try {
23*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod1();
24*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod1!");
25*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
26*795d594fSAndroid Build Coastguard Worker#      try {
27*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod2();
28*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod2!");
29*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
30*795d594fSAndroid Build Coastguard Worker#      try {
31*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod3();
32*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod3!");
33*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
34*795d594fSAndroid Build Coastguard Worker#      try {
35*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod4();
36*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod4!");
37*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
38*795d594fSAndroid Build Coastguard Worker#      try {
39*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod5();
40*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod5!");
41*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
42*795d594fSAndroid Build Coastguard Worker#      try {
43*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod6();
44*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod6!");
45*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
46*795d594fSAndroid Build Coastguard Worker#      try {
47*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod7();
48*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod7!");
49*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
50*795d594fSAndroid Build Coastguard Worker#      try {
51*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod8();
52*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod8!");
53*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
54*795d594fSAndroid Build Coastguard Worker#      try {
55*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod9();
56*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod9!");
57*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
58*795d594fSAndroid Build Coastguard Worker#      try {
59*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod10();
60*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod10!");
61*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
62*795d594fSAndroid Build Coastguard Worker#      try {
63*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod11();
64*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod11!");
65*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
66*795d594fSAndroid Build Coastguard Worker#      try {
67*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod12();
68*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod12!");
69*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
70*795d594fSAndroid Build Coastguard Worker#      try {
71*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod13();
72*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod13!");
73*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
74*795d594fSAndroid Build Coastguard Worker#      try {
75*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod14();
76*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod14!");
77*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
78*795d594fSAndroid Build Coastguard Worker#      try {
79*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod15();
80*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod15!");
81*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
82*795d594fSAndroid Build Coastguard Worker#      try {
83*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod16();
84*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod16!");
85*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
86*795d594fSAndroid Build Coastguard Worker#      try {
87*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod17();
88*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod17!");
89*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
90*795d594fSAndroid Build Coastguard Worker#      try {
91*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod18();
92*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod18!");
93*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
94*795d594fSAndroid Build Coastguard Worker#      try {
95*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod19();
96*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod19!");
97*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
98*795d594fSAndroid Build Coastguard Worker#      try {
99*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod20();
100*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod20!");
101*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
102*795d594fSAndroid Build Coastguard Worker#      try {
103*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod21();
104*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod21!");
105*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
106*795d594fSAndroid Build Coastguard Worker#      try {
107*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod22();
108*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod22!");
109*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
110*795d594fSAndroid Build Coastguard Worker#      try {
111*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod23();
112*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod23!");
113*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
114*795d594fSAndroid Build Coastguard Worker#      try {
115*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod24();
116*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod24!");
117*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
118*795d594fSAndroid Build Coastguard Worker#      try {
119*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod25();
120*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod25!");
121*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
122*795d594fSAndroid Build Coastguard Worker#      try {
123*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod26();
124*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod26!");
125*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
126*795d594fSAndroid Build Coastguard Worker#      try {
127*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod27();
128*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod27!");
129*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
130*795d594fSAndroid Build Coastguard Worker#      try {
131*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod28();
132*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod28!");
133*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
134*795d594fSAndroid Build Coastguard Worker#      try {
135*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod29();
136*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod29!");
137*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
138*795d594fSAndroid Build Coastguard Worker#      try {
139*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod30();
140*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod30!");
141*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
142*795d594fSAndroid Build Coastguard Worker#      try {
143*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod31();
144*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod31!");
145*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
146*795d594fSAndroid Build Coastguard Worker#      try {
147*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod32();
148*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod32!");
149*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
150*795d594fSAndroid Build Coastguard Worker#      try {
151*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod33();
152*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod33!");
153*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
154*795d594fSAndroid Build Coastguard Worker#      try {
155*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod34();
156*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod34!");
157*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
158*795d594fSAndroid Build Coastguard Worker#      try {
159*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod35();
160*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod35!");
161*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
162*795d594fSAndroid Build Coastguard Worker#      try {
163*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod36();
164*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod36!");
165*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
166*795d594fSAndroid Build Coastguard Worker#      try {
167*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod37();
168*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod37!");
169*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
170*795d594fSAndroid Build Coastguard Worker#      try {
171*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod38();
172*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod38!");
173*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
174*795d594fSAndroid Build Coastguard Worker#      try {
175*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod39();
176*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod39!");
177*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
178*795d594fSAndroid Build Coastguard Worker#      try {
179*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod40();
180*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod40!");
181*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
182*795d594fSAndroid Build Coastguard Worker#      try {
183*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod41();
184*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod41!");
185*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
186*795d594fSAndroid Build Coastguard Worker#      try {
187*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod42();
188*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod42!");
189*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
190*795d594fSAndroid Build Coastguard Worker#      try {
191*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod43();
192*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod43!");
193*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
194*795d594fSAndroid Build Coastguard Worker#      try {
195*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod44();
196*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod44!");
197*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
198*795d594fSAndroid Build Coastguard Worker#      try {
199*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod45();
200*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod45!");
201*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
202*795d594fSAndroid Build Coastguard Worker#      try {
203*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod46();
204*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod46!");
205*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
206*795d594fSAndroid Build Coastguard Worker#      try {
207*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod47();
208*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod47!");
209*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
210*795d594fSAndroid Build Coastguard Worker#      try {
211*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod48();
212*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod48!");
213*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
214*795d594fSAndroid Build Coastguard Worker#      try {
215*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod49();
216*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod49!");
217*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
218*795d594fSAndroid Build Coastguard Worker#      try {
219*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod50();
220*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod50!");
221*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
222*795d594fSAndroid Build Coastguard Worker#      try {
223*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod51();
224*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod51!");
225*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
226*795d594fSAndroid Build Coastguard Worker#      try {
227*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod52();
228*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod52!");
229*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
230*795d594fSAndroid Build Coastguard Worker#      try {
231*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod53();
232*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod53!");
233*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
234*795d594fSAndroid Build Coastguard Worker#      try {
235*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod54();
236*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod54!");
237*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
238*795d594fSAndroid Build Coastguard Worker#      try {
239*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod55();
240*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod55!");
241*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
242*795d594fSAndroid Build Coastguard Worker#      try {
243*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod56();
244*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod56!");
245*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
246*795d594fSAndroid Build Coastguard Worker#      try {
247*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod57();
248*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod57!");
249*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
250*795d594fSAndroid Build Coastguard Worker#      try {
251*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod58();
252*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod58!");
253*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
254*795d594fSAndroid Build Coastguard Worker#      try {
255*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod59();
256*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod59!");
257*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
258*795d594fSAndroid Build Coastguard Worker#      try {
259*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod60();
260*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod60!");
261*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
262*795d594fSAndroid Build Coastguard Worker#      try {
263*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod61();
264*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod61!");
265*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
266*795d594fSAndroid Build Coastguard Worker#      try {
267*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod62();
268*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod62!");
269*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }
270*795d594fSAndroid Build Coastguard Worker#      try {
271*795d594fSAndroid Build Coastguard Worker#        me.notImplementedMethod63();
272*795d594fSAndroid Build Coastguard Worker#        System.out.println("FAILED TO THROW AbstractMethodError when calling notImplementedMethod63!");
273*795d594fSAndroid Build Coastguard Worker#      } catch (AbstractMethodError e) { /* do nothing */ }                                                                }
274*795d594fSAndroid Build Coastguard Worker#    }
275*795d594fSAndroid Build Coastguard Worker# }
276*795d594fSAndroid Build Coastguard Worker
277*795d594fSAndroid Build Coastguard Worker.class public LKlass;
278*795d594fSAndroid Build Coastguard Worker.super Ljava/lang/Object;
279*795d594fSAndroid Build Coastguard Worker.implements LIface1;
280*795d594fSAndroid Build Coastguard Worker.implements LIface2;
281*795d594fSAndroid Build Coastguard Worker
282*795d594fSAndroid Build Coastguard Worker.method public constructor <init>()V
283*795d594fSAndroid Build Coastguard Worker    .registers 1
284*795d594fSAndroid Build Coastguard Worker    invoke-direct {p0}, Ljava/lang/Object;-><init>()V
285*795d594fSAndroid Build Coastguard Worker    return-void
286*795d594fSAndroid Build Coastguard Worker.end method
287*795d594fSAndroid Build Coastguard Worker
288*795d594fSAndroid Build Coastguard Worker.method public static testMe(LIface2;)V
289*795d594fSAndroid Build Coastguard Worker.locals 5
290*795d594fSAndroid Build Coastguard Worker    :try_0_start
291*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod0()V
292*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
293*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod0!"
294*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
295*795d594fSAndroid Build Coastguard Worker        goto :catch_0_end
296*795d594fSAndroid Build Coastguard Worker    :try_0_end
297*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_0_start .. :try_0_end} :catch_0_end
298*795d594fSAndroid Build Coastguard Worker    :catch_0_end
299*795d594fSAndroid Build Coastguard Worker
300*795d594fSAndroid Build Coastguard Worker
301*795d594fSAndroid Build Coastguard Worker    :try_1_start
302*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod1()V
303*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
304*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod1!"
305*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
306*795d594fSAndroid Build Coastguard Worker        goto :catch_1_end
307*795d594fSAndroid Build Coastguard Worker    :try_1_end
308*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_1_start .. :try_1_end} :catch_1_end
309*795d594fSAndroid Build Coastguard Worker    :catch_1_end
310*795d594fSAndroid Build Coastguard Worker
311*795d594fSAndroid Build Coastguard Worker
312*795d594fSAndroid Build Coastguard Worker    :try_2_start
313*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod2()V
314*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
315*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod2!"
316*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
317*795d594fSAndroid Build Coastguard Worker        goto :catch_2_end
318*795d594fSAndroid Build Coastguard Worker    :try_2_end
319*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_2_start .. :try_2_end} :catch_2_end
320*795d594fSAndroid Build Coastguard Worker    :catch_2_end
321*795d594fSAndroid Build Coastguard Worker
322*795d594fSAndroid Build Coastguard Worker
323*795d594fSAndroid Build Coastguard Worker    :try_3_start
324*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod3()V
325*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
326*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod3!"
327*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
328*795d594fSAndroid Build Coastguard Worker        goto :catch_3_end
329*795d594fSAndroid Build Coastguard Worker    :try_3_end
330*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_3_start .. :try_3_end} :catch_3_end
331*795d594fSAndroid Build Coastguard Worker    :catch_3_end
332*795d594fSAndroid Build Coastguard Worker
333*795d594fSAndroid Build Coastguard Worker
334*795d594fSAndroid Build Coastguard Worker    :try_4_start
335*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod4()V
336*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
337*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod4!"
338*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
339*795d594fSAndroid Build Coastguard Worker        goto :catch_4_end
340*795d594fSAndroid Build Coastguard Worker    :try_4_end
341*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_4_start .. :try_4_end} :catch_4_end
342*795d594fSAndroid Build Coastguard Worker    :catch_4_end
343*795d594fSAndroid Build Coastguard Worker
344*795d594fSAndroid Build Coastguard Worker
345*795d594fSAndroid Build Coastguard Worker    :try_5_start
346*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod5()V
347*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
348*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod5!"
349*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
350*795d594fSAndroid Build Coastguard Worker        goto :catch_5_end
351*795d594fSAndroid Build Coastguard Worker    :try_5_end
352*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_5_start .. :try_5_end} :catch_5_end
353*795d594fSAndroid Build Coastguard Worker    :catch_5_end
354*795d594fSAndroid Build Coastguard Worker
355*795d594fSAndroid Build Coastguard Worker
356*795d594fSAndroid Build Coastguard Worker    :try_6_start
357*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod6()V
358*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
359*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod6!"
360*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
361*795d594fSAndroid Build Coastguard Worker        goto :catch_6_end
362*795d594fSAndroid Build Coastguard Worker    :try_6_end
363*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_6_start .. :try_6_end} :catch_6_end
364*795d594fSAndroid Build Coastguard Worker    :catch_6_end
365*795d594fSAndroid Build Coastguard Worker
366*795d594fSAndroid Build Coastguard Worker
367*795d594fSAndroid Build Coastguard Worker    :try_7_start
368*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod7()V
369*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
370*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod7!"
371*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
372*795d594fSAndroid Build Coastguard Worker        goto :catch_7_end
373*795d594fSAndroid Build Coastguard Worker    :try_7_end
374*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_7_start .. :try_7_end} :catch_7_end
375*795d594fSAndroid Build Coastguard Worker    :catch_7_end
376*795d594fSAndroid Build Coastguard Worker
377*795d594fSAndroid Build Coastguard Worker
378*795d594fSAndroid Build Coastguard Worker    :try_8_start
379*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod8()V
380*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
381*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod8!"
382*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
383*795d594fSAndroid Build Coastguard Worker        goto :catch_8_end
384*795d594fSAndroid Build Coastguard Worker    :try_8_end
385*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_8_start .. :try_8_end} :catch_8_end
386*795d594fSAndroid Build Coastguard Worker    :catch_8_end
387*795d594fSAndroid Build Coastguard Worker
388*795d594fSAndroid Build Coastguard Worker
389*795d594fSAndroid Build Coastguard Worker    :try_9_start
390*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod9()V
391*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
392*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod9!"
393*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
394*795d594fSAndroid Build Coastguard Worker        goto :catch_9_end
395*795d594fSAndroid Build Coastguard Worker    :try_9_end
396*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_9_start .. :try_9_end} :catch_9_end
397*795d594fSAndroid Build Coastguard Worker    :catch_9_end
398*795d594fSAndroid Build Coastguard Worker
399*795d594fSAndroid Build Coastguard Worker
400*795d594fSAndroid Build Coastguard Worker    :try_10_start
401*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod10()V
402*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
403*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod10!"
404*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
405*795d594fSAndroid Build Coastguard Worker        goto :catch_10_end
406*795d594fSAndroid Build Coastguard Worker    :try_10_end
407*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_10_start .. :try_10_end} :catch_10_end
408*795d594fSAndroid Build Coastguard Worker    :catch_10_end
409*795d594fSAndroid Build Coastguard Worker
410*795d594fSAndroid Build Coastguard Worker
411*795d594fSAndroid Build Coastguard Worker    :try_11_start
412*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod11()V
413*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
414*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod11!"
415*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
416*795d594fSAndroid Build Coastguard Worker        goto :catch_11_end
417*795d594fSAndroid Build Coastguard Worker    :try_11_end
418*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_11_start .. :try_11_end} :catch_11_end
419*795d594fSAndroid Build Coastguard Worker    :catch_11_end
420*795d594fSAndroid Build Coastguard Worker
421*795d594fSAndroid Build Coastguard Worker
422*795d594fSAndroid Build Coastguard Worker    :try_12_start
423*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod12()V
424*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
425*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod12!"
426*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
427*795d594fSAndroid Build Coastguard Worker        goto :catch_12_end
428*795d594fSAndroid Build Coastguard Worker    :try_12_end
429*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_12_start .. :try_12_end} :catch_12_end
430*795d594fSAndroid Build Coastguard Worker    :catch_12_end
431*795d594fSAndroid Build Coastguard Worker
432*795d594fSAndroid Build Coastguard Worker
433*795d594fSAndroid Build Coastguard Worker    :try_13_start
434*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod13()V
435*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
436*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod13!"
437*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
438*795d594fSAndroid Build Coastguard Worker        goto :catch_13_end
439*795d594fSAndroid Build Coastguard Worker    :try_13_end
440*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_13_start .. :try_13_end} :catch_13_end
441*795d594fSAndroid Build Coastguard Worker    :catch_13_end
442*795d594fSAndroid Build Coastguard Worker
443*795d594fSAndroid Build Coastguard Worker
444*795d594fSAndroid Build Coastguard Worker    :try_14_start
445*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod14()V
446*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
447*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod14!"
448*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
449*795d594fSAndroid Build Coastguard Worker        goto :catch_14_end
450*795d594fSAndroid Build Coastguard Worker    :try_14_end
451*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_14_start .. :try_14_end} :catch_14_end
452*795d594fSAndroid Build Coastguard Worker    :catch_14_end
453*795d594fSAndroid Build Coastguard Worker
454*795d594fSAndroid Build Coastguard Worker
455*795d594fSAndroid Build Coastguard Worker    :try_15_start
456*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod15()V
457*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
458*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod15!"
459*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
460*795d594fSAndroid Build Coastguard Worker        goto :catch_15_end
461*795d594fSAndroid Build Coastguard Worker    :try_15_end
462*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_15_start .. :try_15_end} :catch_15_end
463*795d594fSAndroid Build Coastguard Worker    :catch_15_end
464*795d594fSAndroid Build Coastguard Worker
465*795d594fSAndroid Build Coastguard Worker
466*795d594fSAndroid Build Coastguard Worker    :try_16_start
467*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod16()V
468*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
469*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod16!"
470*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
471*795d594fSAndroid Build Coastguard Worker        goto :catch_16_end
472*795d594fSAndroid Build Coastguard Worker    :try_16_end
473*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_16_start .. :try_16_end} :catch_16_end
474*795d594fSAndroid Build Coastguard Worker    :catch_16_end
475*795d594fSAndroid Build Coastguard Worker
476*795d594fSAndroid Build Coastguard Worker
477*795d594fSAndroid Build Coastguard Worker    :try_17_start
478*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod17()V
479*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
480*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod17!"
481*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
482*795d594fSAndroid Build Coastguard Worker        goto :catch_17_end
483*795d594fSAndroid Build Coastguard Worker    :try_17_end
484*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_17_start .. :try_17_end} :catch_17_end
485*795d594fSAndroid Build Coastguard Worker    :catch_17_end
486*795d594fSAndroid Build Coastguard Worker
487*795d594fSAndroid Build Coastguard Worker
488*795d594fSAndroid Build Coastguard Worker    :try_18_start
489*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod18()V
490*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
491*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod18!"
492*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
493*795d594fSAndroid Build Coastguard Worker        goto :catch_18_end
494*795d594fSAndroid Build Coastguard Worker    :try_18_end
495*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_18_start .. :try_18_end} :catch_18_end
496*795d594fSAndroid Build Coastguard Worker    :catch_18_end
497*795d594fSAndroid Build Coastguard Worker
498*795d594fSAndroid Build Coastguard Worker
499*795d594fSAndroid Build Coastguard Worker    :try_19_start
500*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod19()V
501*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
502*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod19!"
503*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
504*795d594fSAndroid Build Coastguard Worker        goto :catch_19_end
505*795d594fSAndroid Build Coastguard Worker    :try_19_end
506*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_19_start .. :try_19_end} :catch_19_end
507*795d594fSAndroid Build Coastguard Worker    :catch_19_end
508*795d594fSAndroid Build Coastguard Worker
509*795d594fSAndroid Build Coastguard Worker
510*795d594fSAndroid Build Coastguard Worker    :try_20_start
511*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod20()V
512*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
513*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod20!"
514*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
515*795d594fSAndroid Build Coastguard Worker        goto :catch_20_end
516*795d594fSAndroid Build Coastguard Worker    :try_20_end
517*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_20_start .. :try_20_end} :catch_20_end
518*795d594fSAndroid Build Coastguard Worker    :catch_20_end
519*795d594fSAndroid Build Coastguard Worker
520*795d594fSAndroid Build Coastguard Worker
521*795d594fSAndroid Build Coastguard Worker    :try_21_start
522*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod21()V
523*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
524*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod21!"
525*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
526*795d594fSAndroid Build Coastguard Worker        goto :catch_21_end
527*795d594fSAndroid Build Coastguard Worker    :try_21_end
528*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_21_start .. :try_21_end} :catch_21_end
529*795d594fSAndroid Build Coastguard Worker    :catch_21_end
530*795d594fSAndroid Build Coastguard Worker
531*795d594fSAndroid Build Coastguard Worker
532*795d594fSAndroid Build Coastguard Worker    :try_22_start
533*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod22()V
534*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
535*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod22!"
536*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
537*795d594fSAndroid Build Coastguard Worker        goto :catch_22_end
538*795d594fSAndroid Build Coastguard Worker    :try_22_end
539*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_22_start .. :try_22_end} :catch_22_end
540*795d594fSAndroid Build Coastguard Worker    :catch_22_end
541*795d594fSAndroid Build Coastguard Worker
542*795d594fSAndroid Build Coastguard Worker
543*795d594fSAndroid Build Coastguard Worker    :try_23_start
544*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod23()V
545*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
546*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod23!"
547*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
548*795d594fSAndroid Build Coastguard Worker        goto :catch_23_end
549*795d594fSAndroid Build Coastguard Worker    :try_23_end
550*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_23_start .. :try_23_end} :catch_23_end
551*795d594fSAndroid Build Coastguard Worker    :catch_23_end
552*795d594fSAndroid Build Coastguard Worker
553*795d594fSAndroid Build Coastguard Worker
554*795d594fSAndroid Build Coastguard Worker    :try_24_start
555*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod24()V
556*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
557*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod24!"
558*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
559*795d594fSAndroid Build Coastguard Worker        goto :catch_24_end
560*795d594fSAndroid Build Coastguard Worker    :try_24_end
561*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_24_start .. :try_24_end} :catch_24_end
562*795d594fSAndroid Build Coastguard Worker    :catch_24_end
563*795d594fSAndroid Build Coastguard Worker
564*795d594fSAndroid Build Coastguard Worker
565*795d594fSAndroid Build Coastguard Worker    :try_25_start
566*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod25()V
567*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
568*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod25!"
569*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
570*795d594fSAndroid Build Coastguard Worker        goto :catch_25_end
571*795d594fSAndroid Build Coastguard Worker    :try_25_end
572*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_25_start .. :try_25_end} :catch_25_end
573*795d594fSAndroid Build Coastguard Worker    :catch_25_end
574*795d594fSAndroid Build Coastguard Worker
575*795d594fSAndroid Build Coastguard Worker
576*795d594fSAndroid Build Coastguard Worker    :try_26_start
577*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod26()V
578*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
579*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod26!"
580*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
581*795d594fSAndroid Build Coastguard Worker        goto :catch_26_end
582*795d594fSAndroid Build Coastguard Worker    :try_26_end
583*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_26_start .. :try_26_end} :catch_26_end
584*795d594fSAndroid Build Coastguard Worker    :catch_26_end
585*795d594fSAndroid Build Coastguard Worker
586*795d594fSAndroid Build Coastguard Worker
587*795d594fSAndroid Build Coastguard Worker    :try_27_start
588*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod27()V
589*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
590*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod27!"
591*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
592*795d594fSAndroid Build Coastguard Worker        goto :catch_27_end
593*795d594fSAndroid Build Coastguard Worker    :try_27_end
594*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_27_start .. :try_27_end} :catch_27_end
595*795d594fSAndroid Build Coastguard Worker    :catch_27_end
596*795d594fSAndroid Build Coastguard Worker
597*795d594fSAndroid Build Coastguard Worker
598*795d594fSAndroid Build Coastguard Worker    :try_28_start
599*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod28()V
600*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
601*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod28!"
602*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
603*795d594fSAndroid Build Coastguard Worker        goto :catch_28_end
604*795d594fSAndroid Build Coastguard Worker    :try_28_end
605*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_28_start .. :try_28_end} :catch_28_end
606*795d594fSAndroid Build Coastguard Worker    :catch_28_end
607*795d594fSAndroid Build Coastguard Worker
608*795d594fSAndroid Build Coastguard Worker
609*795d594fSAndroid Build Coastguard Worker    :try_29_start
610*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod29()V
611*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
612*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod29!"
613*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
614*795d594fSAndroid Build Coastguard Worker        goto :catch_29_end
615*795d594fSAndroid Build Coastguard Worker    :try_29_end
616*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_29_start .. :try_29_end} :catch_29_end
617*795d594fSAndroid Build Coastguard Worker    :catch_29_end
618*795d594fSAndroid Build Coastguard Worker
619*795d594fSAndroid Build Coastguard Worker
620*795d594fSAndroid Build Coastguard Worker    :try_30_start
621*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod30()V
622*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
623*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod30!"
624*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
625*795d594fSAndroid Build Coastguard Worker        goto :catch_30_end
626*795d594fSAndroid Build Coastguard Worker    :try_30_end
627*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_30_start .. :try_30_end} :catch_30_end
628*795d594fSAndroid Build Coastguard Worker    :catch_30_end
629*795d594fSAndroid Build Coastguard Worker
630*795d594fSAndroid Build Coastguard Worker
631*795d594fSAndroid Build Coastguard Worker    :try_31_start
632*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod31()V
633*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
634*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod31!"
635*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
636*795d594fSAndroid Build Coastguard Worker        goto :catch_31_end
637*795d594fSAndroid Build Coastguard Worker    :try_31_end
638*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_31_start .. :try_31_end} :catch_31_end
639*795d594fSAndroid Build Coastguard Worker    :catch_31_end
640*795d594fSAndroid Build Coastguard Worker
641*795d594fSAndroid Build Coastguard Worker
642*795d594fSAndroid Build Coastguard Worker    :try_32_start
643*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod32()V
644*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
645*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod32!"
646*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
647*795d594fSAndroid Build Coastguard Worker        goto :catch_32_end
648*795d594fSAndroid Build Coastguard Worker    :try_32_end
649*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_32_start .. :try_32_end} :catch_32_end
650*795d594fSAndroid Build Coastguard Worker    :catch_32_end
651*795d594fSAndroid Build Coastguard Worker
652*795d594fSAndroid Build Coastguard Worker
653*795d594fSAndroid Build Coastguard Worker    :try_33_start
654*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod33()V
655*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
656*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod33!"
657*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
658*795d594fSAndroid Build Coastguard Worker        goto :catch_33_end
659*795d594fSAndroid Build Coastguard Worker    :try_33_end
660*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_33_start .. :try_33_end} :catch_33_end
661*795d594fSAndroid Build Coastguard Worker    :catch_33_end
662*795d594fSAndroid Build Coastguard Worker
663*795d594fSAndroid Build Coastguard Worker
664*795d594fSAndroid Build Coastguard Worker    :try_34_start
665*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod34()V
666*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
667*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod34!"
668*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
669*795d594fSAndroid Build Coastguard Worker        goto :catch_34_end
670*795d594fSAndroid Build Coastguard Worker    :try_34_end
671*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_34_start .. :try_34_end} :catch_34_end
672*795d594fSAndroid Build Coastguard Worker    :catch_34_end
673*795d594fSAndroid Build Coastguard Worker
674*795d594fSAndroid Build Coastguard Worker
675*795d594fSAndroid Build Coastguard Worker    :try_35_start
676*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod35()V
677*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
678*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod35!"
679*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
680*795d594fSAndroid Build Coastguard Worker        goto :catch_35_end
681*795d594fSAndroid Build Coastguard Worker    :try_35_end
682*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_35_start .. :try_35_end} :catch_35_end
683*795d594fSAndroid Build Coastguard Worker    :catch_35_end
684*795d594fSAndroid Build Coastguard Worker
685*795d594fSAndroid Build Coastguard Worker
686*795d594fSAndroid Build Coastguard Worker    :try_36_start
687*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod36()V
688*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
689*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod36!"
690*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
691*795d594fSAndroid Build Coastguard Worker        goto :catch_36_end
692*795d594fSAndroid Build Coastguard Worker    :try_36_end
693*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_36_start .. :try_36_end} :catch_36_end
694*795d594fSAndroid Build Coastguard Worker    :catch_36_end
695*795d594fSAndroid Build Coastguard Worker
696*795d594fSAndroid Build Coastguard Worker
697*795d594fSAndroid Build Coastguard Worker    :try_37_start
698*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod37()V
699*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
700*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod37!"
701*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
702*795d594fSAndroid Build Coastguard Worker        goto :catch_37_end
703*795d594fSAndroid Build Coastguard Worker    :try_37_end
704*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_37_start .. :try_37_end} :catch_37_end
705*795d594fSAndroid Build Coastguard Worker    :catch_37_end
706*795d594fSAndroid Build Coastguard Worker
707*795d594fSAndroid Build Coastguard Worker
708*795d594fSAndroid Build Coastguard Worker    :try_38_start
709*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod38()V
710*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
711*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod38!"
712*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
713*795d594fSAndroid Build Coastguard Worker        goto :catch_38_end
714*795d594fSAndroid Build Coastguard Worker    :try_38_end
715*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_38_start .. :try_38_end} :catch_38_end
716*795d594fSAndroid Build Coastguard Worker    :catch_38_end
717*795d594fSAndroid Build Coastguard Worker
718*795d594fSAndroid Build Coastguard Worker
719*795d594fSAndroid Build Coastguard Worker    :try_39_start
720*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod39()V
721*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
722*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod39!"
723*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
724*795d594fSAndroid Build Coastguard Worker        goto :catch_39_end
725*795d594fSAndroid Build Coastguard Worker    :try_39_end
726*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_39_start .. :try_39_end} :catch_39_end
727*795d594fSAndroid Build Coastguard Worker    :catch_39_end
728*795d594fSAndroid Build Coastguard Worker
729*795d594fSAndroid Build Coastguard Worker
730*795d594fSAndroid Build Coastguard Worker    :try_40_start
731*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod40()V
732*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
733*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod40!"
734*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
735*795d594fSAndroid Build Coastguard Worker        goto :catch_40_end
736*795d594fSAndroid Build Coastguard Worker    :try_40_end
737*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_40_start .. :try_40_end} :catch_40_end
738*795d594fSAndroid Build Coastguard Worker    :catch_40_end
739*795d594fSAndroid Build Coastguard Worker
740*795d594fSAndroid Build Coastguard Worker
741*795d594fSAndroid Build Coastguard Worker    :try_41_start
742*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod41()V
743*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
744*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod41!"
745*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
746*795d594fSAndroid Build Coastguard Worker        goto :catch_41_end
747*795d594fSAndroid Build Coastguard Worker    :try_41_end
748*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_41_start .. :try_41_end} :catch_41_end
749*795d594fSAndroid Build Coastguard Worker    :catch_41_end
750*795d594fSAndroid Build Coastguard Worker
751*795d594fSAndroid Build Coastguard Worker
752*795d594fSAndroid Build Coastguard Worker    :try_42_start
753*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod42()V
754*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
755*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod42!"
756*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
757*795d594fSAndroid Build Coastguard Worker        goto :catch_42_end
758*795d594fSAndroid Build Coastguard Worker    :try_42_end
759*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_42_start .. :try_42_end} :catch_42_end
760*795d594fSAndroid Build Coastguard Worker    :catch_42_end
761*795d594fSAndroid Build Coastguard Worker
762*795d594fSAndroid Build Coastguard Worker
763*795d594fSAndroid Build Coastguard Worker    :try_43_start
764*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod43()V
765*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
766*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod43!"
767*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
768*795d594fSAndroid Build Coastguard Worker        goto :catch_43_end
769*795d594fSAndroid Build Coastguard Worker    :try_43_end
770*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_43_start .. :try_43_end} :catch_43_end
771*795d594fSAndroid Build Coastguard Worker    :catch_43_end
772*795d594fSAndroid Build Coastguard Worker
773*795d594fSAndroid Build Coastguard Worker
774*795d594fSAndroid Build Coastguard Worker    :try_44_start
775*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod44()V
776*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
777*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod44!"
778*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
779*795d594fSAndroid Build Coastguard Worker        goto :catch_44_end
780*795d594fSAndroid Build Coastguard Worker    :try_44_end
781*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_44_start .. :try_44_end} :catch_44_end
782*795d594fSAndroid Build Coastguard Worker    :catch_44_end
783*795d594fSAndroid Build Coastguard Worker
784*795d594fSAndroid Build Coastguard Worker
785*795d594fSAndroid Build Coastguard Worker    :try_45_start
786*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod45()V
787*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
788*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod45!"
789*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
790*795d594fSAndroid Build Coastguard Worker        goto :catch_45_end
791*795d594fSAndroid Build Coastguard Worker    :try_45_end
792*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_45_start .. :try_45_end} :catch_45_end
793*795d594fSAndroid Build Coastguard Worker    :catch_45_end
794*795d594fSAndroid Build Coastguard Worker
795*795d594fSAndroid Build Coastguard Worker
796*795d594fSAndroid Build Coastguard Worker    :try_46_start
797*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod46()V
798*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
799*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod46!"
800*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
801*795d594fSAndroid Build Coastguard Worker        goto :catch_46_end
802*795d594fSAndroid Build Coastguard Worker    :try_46_end
803*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_46_start .. :try_46_end} :catch_46_end
804*795d594fSAndroid Build Coastguard Worker    :catch_46_end
805*795d594fSAndroid Build Coastguard Worker
806*795d594fSAndroid Build Coastguard Worker
807*795d594fSAndroid Build Coastguard Worker    :try_47_start
808*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod47()V
809*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
810*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod47!"
811*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
812*795d594fSAndroid Build Coastguard Worker        goto :catch_47_end
813*795d594fSAndroid Build Coastguard Worker    :try_47_end
814*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_47_start .. :try_47_end} :catch_47_end
815*795d594fSAndroid Build Coastguard Worker    :catch_47_end
816*795d594fSAndroid Build Coastguard Worker
817*795d594fSAndroid Build Coastguard Worker
818*795d594fSAndroid Build Coastguard Worker    :try_48_start
819*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod48()V
820*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
821*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod48!"
822*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
823*795d594fSAndroid Build Coastguard Worker        goto :catch_48_end
824*795d594fSAndroid Build Coastguard Worker    :try_48_end
825*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_48_start .. :try_48_end} :catch_48_end
826*795d594fSAndroid Build Coastguard Worker    :catch_48_end
827*795d594fSAndroid Build Coastguard Worker
828*795d594fSAndroid Build Coastguard Worker
829*795d594fSAndroid Build Coastguard Worker    :try_49_start
830*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod49()V
831*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
832*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod49!"
833*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
834*795d594fSAndroid Build Coastguard Worker        goto :catch_49_end
835*795d594fSAndroid Build Coastguard Worker    :try_49_end
836*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_49_start .. :try_49_end} :catch_49_end
837*795d594fSAndroid Build Coastguard Worker    :catch_49_end
838*795d594fSAndroid Build Coastguard Worker
839*795d594fSAndroid Build Coastguard Worker
840*795d594fSAndroid Build Coastguard Worker    :try_50_start
841*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod50()V
842*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
843*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod50!"
844*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
845*795d594fSAndroid Build Coastguard Worker        goto :catch_50_end
846*795d594fSAndroid Build Coastguard Worker    :try_50_end
847*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_50_start .. :try_50_end} :catch_50_end
848*795d594fSAndroid Build Coastguard Worker    :catch_50_end
849*795d594fSAndroid Build Coastguard Worker
850*795d594fSAndroid Build Coastguard Worker
851*795d594fSAndroid Build Coastguard Worker    :try_51_start
852*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod51()V
853*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
854*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod51!"
855*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
856*795d594fSAndroid Build Coastguard Worker        goto :catch_51_end
857*795d594fSAndroid Build Coastguard Worker    :try_51_end
858*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_51_start .. :try_51_end} :catch_51_end
859*795d594fSAndroid Build Coastguard Worker    :catch_51_end
860*795d594fSAndroid Build Coastguard Worker
861*795d594fSAndroid Build Coastguard Worker
862*795d594fSAndroid Build Coastguard Worker    :try_52_start
863*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod52()V
864*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
865*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod52!"
866*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
867*795d594fSAndroid Build Coastguard Worker        goto :catch_52_end
868*795d594fSAndroid Build Coastguard Worker    :try_52_end
869*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_52_start .. :try_52_end} :catch_52_end
870*795d594fSAndroid Build Coastguard Worker    :catch_52_end
871*795d594fSAndroid Build Coastguard Worker
872*795d594fSAndroid Build Coastguard Worker
873*795d594fSAndroid Build Coastguard Worker    :try_53_start
874*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod53()V
875*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
876*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod53!"
877*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
878*795d594fSAndroid Build Coastguard Worker        goto :catch_53_end
879*795d594fSAndroid Build Coastguard Worker    :try_53_end
880*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_53_start .. :try_53_end} :catch_53_end
881*795d594fSAndroid Build Coastguard Worker    :catch_53_end
882*795d594fSAndroid Build Coastguard Worker
883*795d594fSAndroid Build Coastguard Worker
884*795d594fSAndroid Build Coastguard Worker    :try_54_start
885*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod54()V
886*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
887*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod54!"
888*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
889*795d594fSAndroid Build Coastguard Worker        goto :catch_54_end
890*795d594fSAndroid Build Coastguard Worker    :try_54_end
891*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_54_start .. :try_54_end} :catch_54_end
892*795d594fSAndroid Build Coastguard Worker    :catch_54_end
893*795d594fSAndroid Build Coastguard Worker
894*795d594fSAndroid Build Coastguard Worker
895*795d594fSAndroid Build Coastguard Worker    :try_55_start
896*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod55()V
897*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
898*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod55!"
899*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
900*795d594fSAndroid Build Coastguard Worker        goto :catch_55_end
901*795d594fSAndroid Build Coastguard Worker    :try_55_end
902*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_55_start .. :try_55_end} :catch_55_end
903*795d594fSAndroid Build Coastguard Worker    :catch_55_end
904*795d594fSAndroid Build Coastguard Worker
905*795d594fSAndroid Build Coastguard Worker
906*795d594fSAndroid Build Coastguard Worker    :try_56_start
907*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod56()V
908*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
909*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod56!"
910*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
911*795d594fSAndroid Build Coastguard Worker        goto :catch_56_end
912*795d594fSAndroid Build Coastguard Worker    :try_56_end
913*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_56_start .. :try_56_end} :catch_56_end
914*795d594fSAndroid Build Coastguard Worker    :catch_56_end
915*795d594fSAndroid Build Coastguard Worker
916*795d594fSAndroid Build Coastguard Worker
917*795d594fSAndroid Build Coastguard Worker    :try_57_start
918*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod57()V
919*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
920*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod57!"
921*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
922*795d594fSAndroid Build Coastguard Worker        goto :catch_57_end
923*795d594fSAndroid Build Coastguard Worker    :try_57_end
924*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_57_start .. :try_57_end} :catch_57_end
925*795d594fSAndroid Build Coastguard Worker    :catch_57_end
926*795d594fSAndroid Build Coastguard Worker
927*795d594fSAndroid Build Coastguard Worker
928*795d594fSAndroid Build Coastguard Worker    :try_58_start
929*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod58()V
930*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
931*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod58!"
932*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
933*795d594fSAndroid Build Coastguard Worker        goto :catch_58_end
934*795d594fSAndroid Build Coastguard Worker    :try_58_end
935*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_58_start .. :try_58_end} :catch_58_end
936*795d594fSAndroid Build Coastguard Worker    :catch_58_end
937*795d594fSAndroid Build Coastguard Worker
938*795d594fSAndroid Build Coastguard Worker
939*795d594fSAndroid Build Coastguard Worker    :try_59_start
940*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod59()V
941*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
942*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod59!"
943*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
944*795d594fSAndroid Build Coastguard Worker        goto :catch_59_end
945*795d594fSAndroid Build Coastguard Worker    :try_59_end
946*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_59_start .. :try_59_end} :catch_59_end
947*795d594fSAndroid Build Coastguard Worker    :catch_59_end
948*795d594fSAndroid Build Coastguard Worker
949*795d594fSAndroid Build Coastguard Worker
950*795d594fSAndroid Build Coastguard Worker    :try_60_start
951*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod60()V
952*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
953*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod60!"
954*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
955*795d594fSAndroid Build Coastguard Worker        goto :catch_60_end
956*795d594fSAndroid Build Coastguard Worker    :try_60_end
957*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_60_start .. :try_60_end} :catch_60_end
958*795d594fSAndroid Build Coastguard Worker    :catch_60_end
959*795d594fSAndroid Build Coastguard Worker
960*795d594fSAndroid Build Coastguard Worker
961*795d594fSAndroid Build Coastguard Worker    :try_61_start
962*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod61()V
963*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
964*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod61!"
965*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
966*795d594fSAndroid Build Coastguard Worker        goto :catch_61_end
967*795d594fSAndroid Build Coastguard Worker    :try_61_end
968*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_61_start .. :try_61_end} :catch_61_end
969*795d594fSAndroid Build Coastguard Worker    :catch_61_end
970*795d594fSAndroid Build Coastguard Worker
971*795d594fSAndroid Build Coastguard Worker
972*795d594fSAndroid Build Coastguard Worker    :try_62_start
973*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod62()V
974*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
975*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod62!"
976*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
977*795d594fSAndroid Build Coastguard Worker        goto :catch_62_end
978*795d594fSAndroid Build Coastguard Worker    :try_62_end
979*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_62_start .. :try_62_end} :catch_62_end
980*795d594fSAndroid Build Coastguard Worker    :catch_62_end
981*795d594fSAndroid Build Coastguard Worker
982*795d594fSAndroid Build Coastguard Worker
983*795d594fSAndroid Build Coastguard Worker    :try_63_start
984*795d594fSAndroid Build Coastguard Worker        invoke-interface {p0}, LIface2;->notImplementedMethod63()V
985*795d594fSAndroid Build Coastguard Worker        sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
986*795d594fSAndroid Build Coastguard Worker        const-string v1, "FAILED TO THROW AbstractMethodError when calling notImplementedMethod63!"
987*795d594fSAndroid Build Coastguard Worker        invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/Object;)V
988*795d594fSAndroid Build Coastguard Worker        goto :catch_63_end
989*795d594fSAndroid Build Coastguard Worker    :try_63_end
990*795d594fSAndroid Build Coastguard Worker    .catch Ljava/lang/AbstractMethodError; {:try_63_start .. :try_63_end} :catch_63_end
991*795d594fSAndroid Build Coastguard Worker    :catch_63_end
992*795d594fSAndroid Build Coastguard Worker    return-void
993*795d594fSAndroid Build Coastguard Worker.end method
994