Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / intptrcast.cs
1 using System;
2
3 public class Test {
4
5         public static int Main () {
6                 IntPtr ip = (IntPtr)1;
7
8                 if (ip.ToString () != "1")
9                         return 1;
10
11                 return 0;
12         }
13 }
14