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

test-289.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6786c0e89a8e29cf4d24671731c830ea2f8fa599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

public class Test
{
	public static void Main () {}
            
	public string Value { set { } }
	public void set_Value () { return; }
        
        void set_Item (int a, int b, bool c) {}
        int this[int i] { set {} }             
        bool this [bool i] { get { return false; } }
       
}