[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0019-12.cs
blob0e705e342ee467d8491467949a94ac2c30c8ede3
1 // CS0019: Operator `*' cannot be applied to operands of type `E' and `E'
2 // Line : 10
4 enum E: byte {
5 Min
8 class T {
9 static void Main () {
10 E error = E.Min * E.Min;