There was an error while loading. Please reload this page.
2 parents 308c858 + 25e0ed9 commit 68bf39aCopy full SHA for 68bf39a
1 file changed
src/insights/FastEnum.UnitTests/Models/Enums.cs
@@ -242,7 +242,9 @@ public enum SameValueContinuousEnum : byte
242
{
243
A = 1,
244
B = 2,
245
+#pragma warning disable CA1069
246
C = 2, // Name is different, but value is same as other member.
247
+#pragma warning restore CA1069
248
D = 3,
249
}
250
@@ -252,7 +254,9 @@ public enum SameValueDiscontinuousEnum : byte
252
254
253
255
256
B = 3,
257
258
C = 3, // Name is different, but value is same as other member.
259
260
D = 5,
261
262
0 commit comments