tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / idlc / test / parser / typedef.tests
blob0eaf5d634016554c94e2316a48885e84dd205023
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 #   Licensed to the Apache Software Foundation (ASF) under one or more
11 #   contributor license agreements. See the NOTICE file distributed
12 #   with this work for additional information regarding copyright
13 #   ownership. The ASF licenses this file to you under the Apache
14 #   License, Version 2.0 (the "License"); you may not use this file
15 #   except in compliance with the License. You may obtain a copy of
16 #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 EXPECT SUCCESS "typedef.tests 1":
20 struct Struct1 { long member1; };
21 typedef Struct1 T1;
22 typedef T1 T2;
23 struct Struct2: T2 { long member2; };
26 EXPECT FAILURE "typedef.tests 2":
27 typedef long T1;
28 typedef T1 T2;
29 struct Struct: T2 { long member2; };
32 EXPECT SUCCESS "typedef.tests 3":
33 interface Interface1 {};
34 typedef Interface1 T1;
35 typedef T1 T2;
36 interface Interface2: T2 {};
39 EXPECT FAILURE "typedef.tests 4":
40 interface Interface1;
41 typedef Interface1 T1;
42 typedef T1 T2;
43 interface Interface2: T2 {};
46 EXPECT FAILURE "typedef.tests 5":
47 typedef long T1;
48 typedef T1 T2;
49 interface Interface: T2 {};
52 EXPECT FAILURE "typedef.tests 6":
53 typedef void T;
56 EXPECT FAILURE "typedef.tests 7":
57 exception E {};
58 typedef E T;
61 EXPECT FAILURE "typdef.tests 8":
62 constants C {};
63 typedef C T;