diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-19 16:22:10 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-19 19:14:52 +0900 |
commit | 71fb4a139179e9d27070f7f3e98971e3e029697f (patch) | |
tree | 92fbf03f1e546b3c99e6e06e98100b6ef8e4e2c6 /debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs | |
parent | 6eae1a16a1001287ef5129db86f4ef2145ace3ca (diff) | |
download | extra-dependencies-71fb4a139179e9d27070f7f3e98971e3e029697f.tar.gz extra-dependencies-71fb4a139179e9d27070f7f3e98971e3e029697f.zip |
uncrustify: updated to version 0.73
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs deleted file mode 100644 index 09274ab9..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cs/625_where-constraints.cs +++ /dev/null @@ -1,36 +0,0 @@ -interface D { } interface E { }
-
-class C<T1, T2, TX, T3, T4, T5>
-: IDisposable, IEnumerable<T1>
- where T1 : class,D ,E ,new()
- where T2 : IDictionary<D, Dictionary< string, float > >
-where TX : struct, IDisposable
-where T3: class
- where T4: D where T5:E
-{
- void F<T3, T4, T5, TX, T6>() where T3 : D, new()
- where T4 : D
- where T5: D
- where TX : new()
- where T6: D
- {
- }
-
- class C2<T1, T2, TX, T3, T4, T5>
-: IDisposable, IEnumerable<T1>
- where T1 : class,D ,E,new()
- where T2 : IDictionary<D, Dictionary< string, float > >
-where TX : struct, IDisposable
- where T3: class
- where T4: D where T5:E
- {
- void F2<T3, T4, T5, TX, T6>()
- where T3 : D, new()
- where T4 : D
- where T5: D
- where TX : new()
- where T6: D
- {
- }
- }
-}
|