summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp
new file mode 100644
index 00000000..b8e7c4db
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/31720-bit-colon.cpp
@@ -0,0 +1,21 @@
+class C
+{
+ public:
+ size_t f1 : 1;
+ size_t f1 : 1;
+ size_t f2 : sizeof(size_t) - 1;
+
+ Q_SIGNALS:
+ void somesignal();
+};
+
+struct S
+{
+ private:
+ size_t f1 : 1;
+ size_t f1 : 1;
+ size_t f2 : sizeof(size_t) - 1;
+
+ Q_SIGNALS:
+ void somesignal();
+};