Lines Matching refs:published

22 EXPECT SUCCESS "published.tests 1":
23 published enum Enum { VALUE };
24 published struct Struct1 { long member; };
25 published struct Struct2<T> { T member; };
26 published exception E1 {};
27 published interface I1 {};
28 published typedef long Typedef;
29 published const long Constant = 1;
30 published constants Constants { const long Constant = 1; };
31 published service Service1: I1 {};
32 published service Service2 { interface I1; };
33 published singleton Singleton1: I1;
34 published singleton Singleton2 { service Service2; };
37 EXPECT FAILURE "published.tests 2":
38 constants Constants { published const long C = 1; };
41 EXPECT FAILURE "published.tests 3":
42 published constants Constants { published const long C = 1; };
45 EXPECT FAILURE "published.tests 4":
46 published module m {};
49 EXPECT SUCCESS "published.tests 5":
54 EXPECT SUCCESS "published.tests 6":
56 published interface I1 {};
59 EXPECT FAILURE "published.tests 7":
60 published interface I1;
64 EXPECT SUCCESS "published.tests 8":
65 published interface I1;
66 published interface I1 {};
69 EXPECT SUCCESS "published.tests 9":
74 EXPECT FAILURE "published.tests 10":
76 published struct S2: S1 { long m2; };
79 EXPECT SUCCESS "published.tests 11":
80 published struct S1 { long m1; };
84 EXPECT SUCCESS "published.tests 12":
85 published struct S1 { long m1; };
86 published struct S2: S1 { long m2; };
89 EXPECT SUCCESS "published.tests 13":
95 EXPECT FAILURE "published.tests 14":
98 published struct S2 { S1<E> m2; };
101 EXPECT SUCCESS "published.tests 15":
103 published struct S1<T> { T m1; };
107 EXPECT FAILURE "published.tests 16":
109 published struct S1<T> { T m1; };
110 published struct S2 { S1<E> m2; };
113 EXPECT SUCCESS "published.tests 17":
114 published enum E { V };
119 EXPECT FAILURE "published.tests 18":
120 published enum E { V };
122 published struct S2 { S1<E> m2; };
125 EXPECT SUCCESS "published.tests 19":
126 published enum E { V };
127 published struct S1<T> { T m1; };
131 EXPECT SUCCESS "published.tests 20":
132 published enum E { V };
133 published struct S1<T> { T m1; };
134 published struct S2 { S1<E> m2; };
137 EXPECT SUCCESS "published.tests 21":
144 EXPECT FAILURE "published.tests 22":
147 published exception E2: Exception {};
151 EXPECT SUCCESS "published.tests 23":
153 published exception Exception {};
158 EXPECT SUCCESS "published.tests 24":
160 published exception Exception {};
161 published exception E2: Exception {};
165 EXPECT SUCCESS "published.tests 25":
172 EXPECT FAILURE "published.tests 26":
175 published exception Exception { E m; };
179 EXPECT SUCCESS "published.tests 27":
180 published enum E { V };
186 EXPECT SUCCESS "published.tests 28":
187 published enum E { V };
189 published exception Exception { E m; };
193 EXPECT SUCCESS "published.tests 29":
198 EXPECT FAILURE "published.tests 30":
200 published interface I2: I1 {};
203 EXPECT SUCCESS "published.tests 31":
204 published interface I1 {};
208 EXPECT SUCCESS "published.tests 32":
209 published interface I1 {};
210 published interface I2: I1 {};
213 EXPECT SUCCESS "published.tests 33":
218 EXPECT FAILURE "published.tests 34":
220 published interface I1 { [attribute] E m; };
223 EXPECT SUCCESS "published.tests 35":
224 published enum E { V };
228 EXPECT SUCCESS "published.tests 36":
229 published enum E { V };
230 published interface I1 { [attribute] E m; };
233 EXPECT SUCCESS "published.tests 36a.1":
240 EXPECT FAILURE "published.tests 36a.2":
243 published interface I1 {
248 EXPECT SUCCESS "published.tests 36a.3":
250 published exception Exception {};
255 EXPECT SUCCESS "published.tests 36a.4":
257 published exception Exception {};
258 published interface I1 {
263 EXPECT SUCCESS "published.tests 37":
268 EXPECT FAILURE "published.tests 38":
270 published interface I1 { E f(); };
273 EXPECT SUCCESS "published.tests 39":
274 published enum E { V };
278 EXPECT SUCCESS "published.tests 40":
279 published enum E { V };
280 published interface I1 { E f(); };
283 EXPECT SUCCESS "published.tests 41":
288 EXPECT FAILURE "published.tests 42":
290 published interface I1 { void f([in] E p); };
293 EXPECT SUCCESS "published.tests 43":
294 published enum E { V };
298 EXPECT SUCCESS "published.tests 44":
299 published enum E { V };
300 published interface I1 { void f([in] E p); };
303 EXPECT SUCCESS "published.tests 45":
310 EXPECT FAILURE "published.tests 46":
313 published interface I1 { void f() raises (Exception); };
317 EXPECT SUCCESS "published.tests 47":
319 published exception Exception {};
324 EXPECT SUCCESS "published.tests 48":
326 published exception Exception {};
327 published interface I1 { void f() raises (Exception); };
331 EXPECT SUCCESS "published.tests 49":
336 EXPECT FAILURE "published.tests 50":
338 published interface I2 { interface I1; };
341 EXPECT SUCCESS "published.tests 51":
342 published interface I1 {};
346 EXPECT SUCCESS "published.tests 52":
347 published interface I1 {};
348 published interface I2 { interface I1; };
351 EXPECT SUCCESS "published.tests 57":
356 EXPECT FAILURE "published.tests 58":
358 published typedef E T;
361 EXPECT SUCCESS "published.tests 59":
362 published enum E { V };
366 EXPECT SUCCESS "published.tests 60":
367 published enum E { V };
368 published typedef E T;
371 EXPECT SUCCESS "published.tests 61":
377 EXPECT FAILURE "published.tests 62":
380 published struct S { T m; };
383 EXPECT FAILURE "published.tests 63":
385 published typedef E T;
389 EXPECT FAILURE "published.tests 64":
391 published typedef E T;
392 published struct S { T m; };
395 EXPECT SUCCESS "published.tests 65":
396 published enum E { V };
401 EXPECT FAILURE "published.tests 66":
402 published enum E { V };
404 published struct S { T m; };
407 EXPECT SUCCESS "published.tests 67":
408 published enum E { V };
409 published typedef E T;
413 EXPECT SUCCESS "published.tests 68":
414 published enum E { V };
415 published typedef E T;
416 published struct S { T m; };
419 EXPECT SUCCESS "published.tests 69":
424 EXPECT FAILURE "published.tests 70":
426 published const long C2 = C1 + 1;
429 EXPECT SUCCESS "published.tests 71":
430 published const long C1 = 1;
434 EXPECT SUCCESS "published.tests 72":
435 published const long C1 = 1;
436 published const long C2 = C1 + 1;
439 EXPECT SUCCESS "published.tests 73":
446 EXPECT SUCCESS "published.tests 74":
447 published constants Cs {
453 EXPECT SUCCESS "published.tests 75":
458 EXPECT FAILURE "published.tests 76":
460 published const long C2 = Cs::C1 + 1;
463 EXPECT SUCCESS "published.tests 77":
464 published constants Cs { const long C1 = 1; };
468 EXPECT SUCCESS "published.tests 78":
469 published constants Cs { const long C1 = 1; };
470 published const long C2 = Cs::C1 + 1;
473 EXPECT SUCCESS "published.tests 79":
478 EXPECT FAILURE "published.tests 80":
480 published constants Cs { const long C2 = C1 + 1; };
483 EXPECT SUCCESS "published.tests 81":
484 published const long C1 = 1;
488 EXPECT SUCCESS "published.tests 82":
489 published const long C1 = 1;
490 published constants Cs { const long C2 = C1 + 1; };
493 EXPECT SUCCESS "published.tests 83":
498 EXPECT FAILURE "published.tests 84":
500 published constants Cs2 { const long C2 = Cs1::C1 + 1; };
503 EXPECT SUCCESS "published.tests 85":
504 published constants Cs1 { const long C1 = 1; };
508 EXPECT SUCCESS "published.tests 86":
509 published constants Cs1 { const long C1 = 1; };
510 published constants Cs2 { const long C2 = Cs1::C1 + 1; };
513 EXPECT SUCCESS "published.tests 87":
518 EXPECT FAILURE "published.tests 88":
520 published const T C = 1;
523 EXPECT SUCCESS "published.tests 89":
524 published typedef long T;
528 EXPECT SUCCESS "published.tests 90":
529 published typedef long T;
530 published const T C = 1;
533 EXPECT SUCCESS "published.tests 91":
538 EXPECT FAILURE "published.tests 92":
540 published service S2 { service S1; };
543 EXPECT SUCCESS "published.tests 93":
544 published service S1 {};
548 EXPECT SUCCESS "published.tests 94":
549 published service S1 {};
550 published service S2 { service S1; };
553 EXPECT SUCCESS "published.tests 95":
558 EXPECT FAILURE "published.tests 96":
560 published service S { interface I1; };
563 EXPECT SUCCESS "published.tests 97":
564 published interface I1 {};
568 EXPECT SUCCESS "published.tests 98":
569 published interface I1 {};
570 published service S { interface I1; };
573 EXPECT SUCCESS "published.tests 99":
578 EXPECT FAILURE "published.tests 100":
580 published service S: I1;
583 EXPECT SUCCESS "published.tests 101":
584 published interface I1 {};
588 EXPECT SUCCESS "published.tests 102":
589 published interface I1 {};
590 published service S: I1;
593 EXPECT SUCCESS "published.tests 103":
601 EXPECT FAILURE "published.tests 104":
603 published interface I1 {};
604 published service S: I1 {
609 EXPECT SUCCESS "published.tests 105":
610 published enum E { V };
617 EXPECT SUCCESS "published.tests 106":
618 published enum E { V };
619 published interface I1 {};
620 published service S: I1 {
625 EXPECT SUCCESS "published.tests 107":
635 EXPECT FAILURE "published.tests 108":
638 published interface I1 {};
639 published service S: I1 {
645 EXPECT SUCCESS "published.tests 109":
647 published exception Exception {};
655 EXPECT SUCCESS "published.tests 110":
657 published exception Exception {};
658 published interface I1 {};
659 published service S: I1 {
665 EXPECT SUCCESS "published.tests 111":
670 EXPECT FAILURE "published.tests 112":
672 published singleton S2 { service S1; };
675 EXPECT SUCCESS "published.tests 113":
676 published service S1 {};
680 EXPECT SUCCESS "published.tests 114":
681 published service S1 {};
682 published singleton S2 { service S1; };
685 EXPECT SUCCESS "published.tests 115":
690 EXPECT FAILURE "published.tests 116":
692 published singleton S: I1;
695 EXPECT SUCCESS "published.tests 117":
696 published interface I1 {};
700 EXPECT SUCCESS "published.tests 118":
701 published interface I1 {};
702 published singleton S: I1;