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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0677.cs
blob
190ab8093ea283d5f10ed36408397fb22f0ca4b4
1
// CS0677: `C<T>.t': A volatile field cannot be of the type `T'
2
// Line: 8
3
4
public class
C
<
T
>
where T
:
struct
5
{
6
volatile
T t
;
7
}