From e6ba08c3b21cdb14ee3a97b5d584759a4597b54b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 21 Nov 2021 17:04:21 +0900 Subject: uncrustify-trinity: updated based on upstream version 0.74.0 Signed-off-by: Michele Calgaro --- .../tests/input/cs/UNI-32658.cs | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cs/UNI-32658.cs (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cs/UNI-32658.cs') diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cs/UNI-32658.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cs/UNI-32658.cs new file mode 100644 index 00000000..145da65f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cs/UNI-32658.cs @@ -0,0 +1,36 @@ +//TestCase-001 +internal struct MyStruct + where T : struct, IPrepareFrameJob +{ +} + +//TestCase-002 +class MyClass + where T : class + where U : struct +{ +} + +//TestCase-003 +interface IMyInterface +{ +} + +class Dictionary + where TKey : IComparable, IEnumerable + where TVal : IMyInterface +{ + public void Add(TKey key, TVal val) {} +} + +long DeviceCommand(int deviceId, ref TCommand command) + where TCommand : struct, IInputDeviceCommandInfo; + +public virtual long OnDeviceCommand(ref TCommand command) + where TCommand : struct, IInputDeviceCommandInfo; + +long DeviceCommand(int deviceId, ref TCommand command) + where TCommand : struct, IInputDeviceCommandInfo + +public virtual long OnDeviceCommand(ref TCommand command) + where TCommand : struct, IInputDeviceCommandInfo -- cgit v1.2.1