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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0437.cs
blob
b1c02c33daf1434f58c74494e1e4250e20f717ed
1
// CS0437: The type `System' conflicts with the imported namespace `System'. Using the definition found in the source file
2
// Line: 9
3
// Compiler options: -warnaserror
4
5
enum
System { A }
6
7
class
X
8
{
9
void
Method
(
System arg
)
10
{
11
}
12
}