summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/lib-types.cc
blob: 032b21d28ea8feccd6071adc2f3161fb5367dc35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* This testcase is part of GDB, the GNU debugger.

   Copyright 2010-2012 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

class class1
{
 public:
  class1 (int _x) : x (_x) {}
  int x;
};

class1 class1_obj (42);
const class1 const_class1_obj (42);
volatile class1 volatile_class1_obj (42);
const volatile class1 const_volatile_class1_obj (42);

typedef class1 typedef_class1;

typedef_class1 typedef_class1_obj (42);

class1& class1_ref_obj (class1_obj);

typedef const typedef_class1 typedef_const_typedef_class1;

typedef_const_typedef_class1 typedef_const_typedef_class1_obj (42);

typedef typedef_const_typedef_class1& typedef_const_typedef_class1_ref;

typedef_const_typedef_class1_ref typedef_const_typedef_class1_ref_obj (typedef_const_typedef_class1_obj);

class subclass1 : public class1
{
 public:
  subclass1 (int _x, int _y) : class1 (_x), y (_y) {}
  int y;
};

subclass1 subclass1_obj (42, 43);

enum enum1 { A, B, C };

enum1 enum1_obj (A);

struct A
{
	int a;
	union {
		int b0;
		int b1;
		union {
			int bb0;
			int bb1;
			union {
				int bbb0;
				int bbb1;
			};
		};
	};
	int c;
	union {
		union {
			int dd0;
			int dd1;
		};
		int d2;
		int d3;
	};
};

struct A a = {1,20,3,40};

int
main ()
{
  return 0;
}