a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
397 B
C#
28 lines
397 B
C#
using System;
|
|
|
|
struct MonoEnumInfo {
|
|
int val;
|
|
|
|
void stuff() { val = 1; }
|
|
|
|
static int GetInfo (out MonoEnumInfo info) {
|
|
info = new MonoEnumInfo ();
|
|
info.stuff();
|
|
return info.val;
|
|
}
|
|
|
|
public static int Main()
|
|
{
|
|
MonoEnumInfo m;
|
|
|
|
if (GetInfo (out m) != 1)
|
|
return 1;
|
|
|
|
if (m.val != 1)
|
|
return 2;
|
|
|
|
return 0;
|
|
}
|
|
};
|
|
|