f3e3aab35a
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
18 lines
225 B
C#
18 lines
225 B
C#
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `S'
|
|
// Line: 9
|
|
// Compiler options: /unsafe
|
|
|
|
unsafe public class C
|
|
{
|
|
S* i;
|
|
}
|
|
|
|
public struct S
|
|
{
|
|
AC ac;
|
|
}
|
|
|
|
abstract class AC
|
|
{
|
|
}
|