[svn] r6037: nemerle/trunk/ncc/testsuite/frommcs/gtest-205.n
nazgul
svnadmin at nemerle.org
Thu Dec 22 19:45:28 CET 2005
Log:
Fix testcase
Author: nazgul
Date: Thu Dec 22 19:45:23 2005
New Revision: 6037
Modified:
nemerle/trunk/ncc/testsuite/frommcs/gtest-205.n
Modified: nemerle/trunk/ncc/testsuite/frommcs/gtest-205.n
==============================================================================
--- nemerle/trunk/ncc/testsuite/frommcs/gtest-205.n (original)
+++ nemerle/trunk/ncc/testsuite/frommcs/gtest-205.n Thu Dec 22 19:45:23 2005
@@ -25,10 +25,10 @@
static Main () : void
{
- Test (typeof (Test[Foo[int]]), Foo ());
- Test (typeof (Test[Bar[int]]), Bar ());
- Test (typeof (Test[Bar[string]]), Bar ());
- Test (typeof (Test[Foo[DateTime]]), Foo ());
+ Test (typeof (Test[Foo[int]]), Foo .[int]());
+ Test (typeof (Test[Bar[int]]), Bar .[int]());
+ Test (typeof (Test[Bar[string]]), Bar .[string]());
+ Test (typeof (Test[Foo[DateTime]]), Foo .[DateTime]());
Test (typeof (Test[DateTime]), DateTime.Now);
Test (typeof (Test[string]), "Hello");
}
@@ -36,10 +36,10 @@
/*
BEGIN-OUTPUT
-Foo`1[System.Object]
+Foo`1[System.Int32]
Bar`1[System.Int32]
Bar`1[System.String]
-Foo`1[System.Object]
+Foo`1[System.DateTime]
System.DateTime
System.String
END-OUTPUT
More information about the svn
mailing list