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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0549.cs
blob
95391b74e3acf12140ba38a266c30048b2900895
1
// CS0549: New virtual member `SealedClass.Foo()' is declared in a sealed class `SealedClass'
2
// Line: 5
3
4
sealed class
SealedClass
{
5
protected virtual void
Foo
() {
6
}
7
}
8
9