summaryrefslogtreecommitdiff
path: root/tests/genie/function-returns-closure.c-expected
blob: e77659a088b2f0120cad2ffe540a1e18e548f87c (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
/* genie_function_returns_closure.c generated by valac, the Vala compiler
 * generated from genie_function_returns_closure.gs, do not modify */

#include <glib.h>
#include <stdlib.h>
#include <string.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 gboolean (*TestFunction) (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);

static void _vala_main (gchar** args,
                 gint args_length1);
VALA_EXTERN TestFunction test (gpointer* result_target,
                   GDestroyNotify* result_target_destroy_notify);
static gboolean __lambda4_ (void);
static gboolean ___lambda4__test_function (gpointer self);

static void
_vala_main (gchar** args,
            gint args_length1)
{
	gpointer _tmp0_ = NULL;
	GDestroyNotify _tmp1_ = NULL;
	TestFunction _tmp2_;
	TestFunction _tmp3_;
	gpointer _tmp3__target;
	GDestroyNotify _tmp3__target_destroy_notify;
	_tmp2_ = test (&_tmp0_, &_tmp1_);
	_tmp3_ = _tmp2_;
	_tmp3__target = _tmp0_;
	_tmp3__target_destroy_notify = _tmp1_;
	_vala_assert (_tmp3_ (_tmp0_) == TRUE, "test()() == true");
	(_tmp3__target_destroy_notify == NULL) ? NULL : (_tmp3__target_destroy_notify (_tmp3__target), NULL);
	_tmp3_ = NULL;
	_tmp3__target = NULL;
	_tmp3__target_destroy_notify = NULL;
}

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

static gboolean
__lambda4_ (void)
{
	gboolean result;
	result = TRUE;
	return result;
}

static gboolean
___lambda4__test_function (gpointer self)
{
	gboolean result;
	result = __lambda4_ ();
	return result;
}

TestFunction
test (gpointer* result_target,
      GDestroyNotify* result_target_destroy_notify)
{
	TestFunction _tmp0_;
	gpointer _tmp0__target;
	GDestroyNotify _tmp0__target_destroy_notify;
	TestFunction result;
	_tmp0_ = ___lambda4__test_function;
	_tmp0__target = NULL;
	_tmp0__target_destroy_notify = NULL;
	*result_target = _tmp0__target;
	*result_target_destroy_notify = _tmp0__target_destroy_notify;
	result = _tmp0_;
	return result;
}