repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs1525-4.cs
blob
84281501f5614e8323b09a3346df0fd8e29229cd
1
// CS1525: Unexpected symbol `='
2
// Line: 10
3
4
public class
Test
5
{
6
private string
name
;
7
8
public string
Name
9
{
10
get
{ return name ?? name = string.Empty; }
11
}
12
}