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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
gcs0403-2.cs
blob
dda9fd93d566cb152c395fb15225f388ba0ecbe6
1
// CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
2
// Line: 8
3
4
struct
S
5
{
6
public void
Foo
<
T
> ()
where T
:
struct
7
{
8
T t
=
null
;
9
}
10
11
static void
Main
()
12
{ }
13
}