summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-18 17:53:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-19 19:27:29 +0900
commitc0a6f1b84c84749908961579b84513fd9f9d9eac (patch)
treeace7ba60cb031acd3a1f4ff10f7bbc5668fa801f /debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp
parent52e5ffe140f0f4402e97936447bc9a606045d2b5 (diff)
downloadextra-dependencies-c0a6f1b84c84749908961579b84513fd9f9d9eac.tar.gz
extra-dependencies-c0a6f1b84c84749908961579b84513fd9f9d9eac.zip
uncrustify-trinity: updated based on upstream version 0.78.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp
new file mode 100644
index 00000000..adc09173
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/34154-type_brace_init_lst.cpp
@@ -0,0 +1,73 @@
+// Uncrustify does not process the intention of an using alias,
+// unknown_kw will therefore no be parsed as known keyword
+using unknown_kw = int;
+
+int main()
+{
+ // 'int' is a known c++ keyword
+ auto a0 = int { 1 };
+ auto b0 = unknown_kw { 2 };
+ auto c0 = ::unknown_kw { 3 };
+ auto d0 = (int) unknown_kw { 4 };
+ auto e0 = (int) ::unknown_kw { 5 };
+ auto f0 = static_cast<int>(unknown_kw { 6 });
+ auto g0 = static_cast<int>(::unknown_kw { 7 });
+
+ auto a1 = int{1};
+ auto b1 = unknown_kw{2};
+ auto c1 = ::unknown_kw{3};
+ auto d1 = (int) unknown_kw{4};
+ auto e1 = (int) ::unknown_kw{5};
+ auto f1 = static_cast<int>(unknown_kw{6});
+ auto g1 = static_cast<int>(::unknown_kw{7});
+
+
+
+ auto a2 = int{1};
+ auto b2 = unknown_kw{2};
+ auto c2 = ::unknown_kw{3};
+ auto d2 = (int) unknown_kw{4};
+ auto e2 = (int) ::unknown_kw{5};
+ auto f2 = static_cast<int>(unknown_kw{6});
+ auto g2 = static_cast<int>(::unknown_kw{7});
+
+
+
+ auto a1 = int{
+
+ 1
+
+ };
+ auto b1 = unknown_kw{
+
+ 2
+
+ };
+ auto c1 = ::unknown_kw {
+
+ 3
+
+ };
+ auto d1 = (int) unknown_kw {
+
+ 4
+
+ };
+ auto e1 = (int) ::unknown_kw {
+
+ 5
+
+ };
+ auto f1 = static_cast<int>(unknown_kw {
+
+ 6
+
+ });
+ auto g1 = static_cast<int>(::unknown_kw {
+
+ 7
+
+ });
+
+ return 1;
+} \ No newline at end of file