-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
svn path=/trunk/mcs/; revision=157504
- Loading branch information
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// CS0120: An object reference is required to access non-static member `MainClass.Test' | ||
// Line: 20 | ||
|
||
public class Test | ||
{ | ||
public void Foo () | ||
{ | ||
} | ||
} | ||
|
||
public class MainClass | ||
{ | ||
public Test Test | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
public static void Main (string[] args) | ||
{ | ||
Test.Foo (); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters