Skip to content

Commit b052fbf

Browse files
committed
C#: Add enum long type testcase.
1 parent f71d684 commit b052fbf

File tree

1 file changed

+6
-0
lines changed
  • csharp/ql/test/query-tests/Stubs/All

1 file changed

+6
-0
lines changed

csharp/ql/test/query-tests/Stubs/All/Test.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,12 @@ public enum Enum4
162162
None4 = 2,
163163
Some42 = 6
164164
}
165+
166+
public enum EnumLong : long
167+
{
168+
Some = 223372036854775807,
169+
None = 10
170+
}
165171
}
166172

167173
namespace A1

0 commit comments

Comments
 (0)