2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / tests / intptrcast.cs
blobc69df851800ff246e6d7b103a2be48dcbaa1d425
1 using System;
3 public class Test {
5 public static int Main () {
6 IntPtr ip = (IntPtr)1;
8 if (ip.ToString () != "1")
9 return 1;
11 return 0;