summaryrefslogtreecommitdiff
path: root/tests/methods/return-unowned-delegate.c-expected
blob: d99c1ab3abbf69ff3f9cf0c250a93aa6f9b0656b (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* methods_return_unowned_delegate.c generated by valac, the Vala compiler
 * generated from methods_return_unowned_delegate.vala, do not modify */

#include <glib.h>

#if !defined(VALA_EXTERN)
#if defined(_WIN32) || defined(__CYGWIN__)
#define VALA_EXTERN __declspec(dllexport) extern
#elif __GNUC__ >= 4
#define VALA_EXTERN __attribute__((visibility("default"))) extern
#else
#define VALA_EXTERN extern
#endif
#endif

typedef gint (*FooFunc) (gpointer user_data);
#define _vala_assert(expr, msg) if G_LIKELY (expr) ; else g_assertion_message_expr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);
#define _vala_return_if_fail(expr, msg) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return; }
#define _vala_return_val_if_fail(expr, msg, val) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return val; }
#define _vala_warn_if_fail(expr, msg) if G_LIKELY (expr) ; else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);

VALA_EXTERN FooFunc foo (gpointer* result_target);
VALA_EXTERN gint manam (void);
VALA_EXTERN FooFunc bar (gpointer* result_target);
static gint __lambda4_ (void);
static gint ___lambda4__foo_func (gpointer self);
static void _vala_main (void);

FooFunc
foo (gpointer* result_target)
{
	FooFunc _tmp0_;
	gpointer _tmp0__target;
	FooFunc result;
	_tmp0_ = (FooFunc) manam;
	_tmp0__target = NULL;
	*result_target = _tmp0__target;
	result = _tmp0_;
	return result;
}

static gint
__lambda4_ (void)
{
	gint result;
	result = 4711;
	return result;
}

static gint
___lambda4__foo_func (gpointer self)
{
	gint result;
	result = __lambda4_ ();
	return result;
}

FooFunc
bar (gpointer* result_target)
{
	FooFunc _tmp0_;
	gpointer _tmp0__target;
	FooFunc result;
	_tmp0_ = ___lambda4__foo_func;
	_tmp0__target = NULL;
	*result_target = _tmp0__target;
	result = _tmp0_;
	return result;
}

gint
manam (void)
{
	gint result;
	result = 42;
	return result;
}

static void
_vala_main (void)
{
	{
		FooFunc func = NULL;
		gpointer _tmp0_ = NULL;
		FooFunc _tmp1_;
		gpointer func_target;
		GDestroyNotify func_target_destroy_notify;
		FooFunc _tmp2_;
		gpointer _tmp2__target;
		GDestroyNotify _tmp2__target_destroy_notify;
		_tmp1_ = foo (&_tmp0_);
		func = _tmp1_;
		func_target = _tmp0_;
		func_target_destroy_notify = NULL;
		_tmp2_ = (FooFunc) manam;
		_tmp2__target = NULL;
		_tmp2__target_destroy_notify = NULL;
		_vala_assert (func == _tmp2_, "func == (FooFunc) manam");
		(_tmp2__target_destroy_notify == NULL) ? NULL : (_tmp2__target_destroy_notify (_tmp2__target), NULL);
		_tmp2_ = NULL;
		_tmp2__target = NULL;
		_tmp2__target_destroy_notify = NULL;
		_vala_assert (func (func_target) == 42, "func () == 42");
		(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
		func = NULL;
		func_target = NULL;
		func_target_destroy_notify = NULL;
	}
	{
		FooFunc func = NULL;
		gpointer _tmp3_ = NULL;
		FooFunc _tmp4_;
		gpointer func_target;
		GDestroyNotify func_target_destroy_notify;
		_tmp4_ = bar (&_tmp3_);
		func = _tmp4_;
		func_target = _tmp3_;
		func_target_destroy_notify = NULL;
		_vala_assert (func (func_target) == 4711, "func () == 4711");
		(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
		func = NULL;
		func_target = NULL;
		func_target_destroy_notify = NULL;
	}
}

int
main (int argc,
      char ** argv)
{
	_vala_main ();
	return 0;
}