repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0143.cs
blob
5886f3b7bda3bf99527c6790aa0f18ca543c0312
1
// CS0143: The class `A' has no constructors defined
2
// Line: 9
3
// Compiler options: -r:CS0143-lib.dll
4
5
public class
Test
6
{
7
public static void
Main
()
8
{
9
new
A
();
10
}
11
}