summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/31450-indent_func_alias_prototype.cpp
blob: 472f66b3ae0e677493d54dcb2814a024647939ba (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

using Fun1 = void (  );
using Fun2 = void (  )   noexcept;

using Fun1a = void (
	);

using Fun2a = void (
	)   noexcept;

using Fun3a = void (
	int a,
	const char*
	);

using Fun4a = void (
	int a,
	const char*
	) noexcept;

using Fun5a = void (
	int a,
	const char*
	);

using Fun6a = void (
	int a,
	const char*
	) noexcept;

using Fun1b = auto (
	)->int;

using Fun2b = auto (
	)   noexcept->int;

using Fun3b = auto (
	int a,
	const char*
	)->int;

using Fun4b = auto (
	int a,
	const char*
	) noexcept->int;

using Fun5b = auto (
	int a,
	const char*
	)->int;

using Fun6b = auto (
	int a,
	const char*
	) noexcept->int;