summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/31451-indent_func_alias_prototype.cpp
blob: 2288f111c1a32b577a74249c592e902c4cbbf5e0 (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;