merge the formfield patch from ooo-build
[ooovba.git] / idlc / test / parser / methodoverload.tests
blob3f9a1019a1f48b35967b7929a7f9db244972c6b2
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: methodoverload.tests,v $
11 # $Revision: 1.5 $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org.  If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
32 EXPECT FAILURE "methodoverload.tests 1":
33 interface Derived {
34         void f();
35         void f();
39 EXPECT FAILURE "methodoverload.tests 2":
40 interface Base {
41         void f();
43 interface Derived {
44         interface Base;
45         void f();
49 EXPECT FAILURE "methodoverload.tests 3":
50 interface Base {
51         void f();
53 interface Derived {
54         void f();
55         interface Base;
59 EXPECT FAILURE "methodoverload.tests 4":
60 interface Base {
61         void f();
63 interface Derived {
64         [optional] interface Base;
65         void f();
69 EXPECT FAILURE "methodoverload.tests 5":
70 interface Base {
71         void f();
73 interface Derived {
74         void f();
75         [optional] interface Base;
79 EXPECT FAILURE "methodoverload.tests 6":
80 interface Base1 {
81         void f();
83 interface Base2 {
84         void f();
86 interface Derived {
87         interface Base1;
88         interface Base2;
92 EXPECT FAILURE "methodoverload.tests 7":
93 interface Base1 {
94         void f();
96 interface Base2 {
97         void f();
99 interface Derived {
100         [optional] interface Base1;
101         interface Base2;
105 EXPECT FAILURE "methodoverload.tests 8":
106 interface Base1 {
107         void f();
109 interface Base2 {
110         void f();
112 interface Derived {
113         interface Base1;
114         [optional] interface Base2;
118 EXPECT SUCCESS "methodoverload.tests 9":
119 interface Base1 {
120         void f();
122 interface Base2 {
123         void f();
125 interface Derived {
126         [optional] interface Base1;
127         [optional] interface Base2;