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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1959-2.cs
blob
007414e579a8982f79afe377cf2899cc11a0821d
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
}