a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
361 B
C#
15 lines
361 B
C#
using System.Reflection;
|
|
|
|
class T {
|
|
protected internal string s;
|
|
public static int Main() {
|
|
FieldInfo f = typeof(T).GetField ("s", BindingFlags.NonPublic|BindingFlags.Instance);
|
|
if (f == null)
|
|
return 2;
|
|
FieldAttributes attrs = f.Attributes;
|
|
if ((attrs & FieldAttributes.FieldAccessMask) != FieldAttributes.FamORAssem)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
}
|