blob: b9fca3294c845d2d79fac52d1e2d89bf336ac3fb [file] [log] [blame]
// varargs test
using System;
using varargsNamespace;
public class varargs_runme {
public static void Main() {
if (varargs.test("Hello") != "Hello")
throw new Exception("Failed");
Foo f = new Foo("Greetings");
if (f.str != "Greetings")
throw new Exception("Failed");
if (f.test("Hello") != "Hello")
throw new Exception("Failed");
}
}