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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs1959-2.cs
blob
cde243a454366e9f11fcd754e853cd7a57fccc44
1
// CS1959: Type parameter `T' cannot be declared const
2
// Line: 8
3
4
struct
S
5
{
6
public void
Foo
<
T
> ()
where T
:
struct
7
{
8
const
T t
=
null
;
9
}
10
}