'type' : assembly access specifier has changed: was 'specifier' is now 'specifier'
You cannot change a type's assembly-level access.
The following sample generates C3382:
#using <mscorlib.dll> private __gc class X; public __gc class X { // C3382 }; void main() { }