Missing test.
[mono.git] / mono / tests / ipaddress.cs
1 using System.Net;
2 using System.Net.Sockets;
3 using System.IO;
4 using System;
5
6 namespace T {
7         public class T {
8
9                 public static int Main () {
10                         IPAddress hostadd = new IPAddress(0x0100007f);
11                         Console.WriteLine("address is " + hostadd.ToString());
12                         if (hostadd.ToString() != "127.0.0.1")
13                                 return 1;
14
15                         return 0;
16                 }
17         }
18 }
19