X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Fgtest-066.cs;h=37a169a4ea2a29bfd39dbc6bb588de88309cc3df;hb=62e2fcde7343c0dd7315305de88ff62450f8b5c2;hp=0c763ad0c89c1fb8b0491669361384738d4bba62;hpb=b2262f41726a89c8209facb3ea9e4be9582422b5;p=mono.git diff --git a/mcs/tests/gtest-066.cs b/mcs/tests/gtest-066.cs index 0c763ad0c89..37a169a4ea2 100644 --- a/mcs/tests/gtest-066.cs +++ b/mcs/tests/gtest-066.cs @@ -1,13 +1,25 @@ using System; +using A = Test; public class Foo { + public class Bar + { + } +} + +namespace Test +{ + class FooEx {} } class X { - static void Main () + public static void Main () { Console.WriteLine (typeof (Foo<>)); + Console.WriteLine (typeof (Foo<>.Bar<>)); + Console.WriteLine (typeof (Test.FooEx<,>)); + Console.WriteLine (typeof (A::FooEx<,>)); } -} +} \ No newline at end of file