summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs
deleted file mode 100644
index 5209dc72..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/UNI-3083.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-class ClassWithCtorICall
-{
- public ClassWithCtorICall()
- {
- DoICall();
- }
-
- //It shouldn't add an extra space before 0x1000
- [MethodImpl((MethodImplOptions)0x1000)]
- static extern void DoICall();
-
- //It shouldn't add an extra space before 1000
- [MethodImpl((MethodImplOptions)1000)]
- static extern void DoICall();
-}