a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
12 lines
252 B
C#
12 lines
252 B
C#
// CS0210: You must provide an initializer in a fixed or using statement declaration
|
|
// Line: 7
|
|
// Compiler options: -unsafe
|
|
|
|
public class MainClass {
|
|
unsafe static void Main () {
|
|
fixed (int* p) {
|
|
}
|
|
}
|
|
}
|
|
|