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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1644-30.cs
blob
6e0568d9db2551951ae15fe3447bbccea6b2c368
1
// CS1644: Feature `anonymous types' cannot be used because it is not part of the C# 1.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:ISO-1
4
5
class
A
6
{
7
void
Foo
()
8
{
9
var
v
=
new
{ X = "Bar" }
;
10
}
11
}