summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs
new file mode 100644
index 00000000..009f269e
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cs/10040-tcf.cs
@@ -0,0 +1,38 @@
+void foo()
+{
+ try
+ {
+ ;
+ }
+ catch (Exception e)
+ {
+ ;
+ }
+ finally
+ {
+ ;
+ }
+
+
+ bar();
+
+ try
+ {
+ ;
+ }
+ catch (Exception e)
+ {
+ ;
+ }
+ catch (Exception e)
+ {
+ ;
+ }
+ finally
+ {
+ ;
+ }
+
+
+ bar();
+}