[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0029-24.cs
blob4cd79a453e8d32525cc9a3efeb1a39c01336693a
1 // CS0029: Cannot implicitly convert type `T' to `int*'
2 // Line : 8
3 // Compiler options: -unsafe
5 class T {
6 static unsafe int Main ()
8 int *a = default(T);