Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-748.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8210c92267e4d89aeeae7b545f33a60eeebc7e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Compiler options: -r:test-748-lib.dll

using System;
using Test;
using RealTest;

class M
{
	Foo Test ()
	{
		return new RealTest.Foo ();
	}
	
	public static void Main ()
	{
	}
}

namespace Test.Local
{
	class M
	{
		Foo Test ()
		{
			return new RealTest.Foo ();
		}
	}
}

namespace RealTest
{
	class Foo
	{
	}
}