summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs
deleted file mode 100644
index 6296ad80..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cs/10160-delegate.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-void foo()
-{
- obj.cb += () => { };
-
- funcwithverylongname(() =>
- {
- func();
- });
-}
-
-Func(
- "stuff",
- foo =>
-{
- bar();
-});
-
-Func(
- "stuff",
- foo =>
-{
- bar();
-});
-
-data.Sort(
- delegate(InputData lhs, InputData rhs)
-{
- return lhs.m_Name.CompareTo(rhs.m_Name);
-});