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
[interp] Reduce computation under calc_section mutex
[mono-project.git]
/
mcs
/
tests
/
gtest-082.cs
blob
c5673acbdb766b2a1113b8cb1e81d4f5890da7e9
1
using
System
;
2
3
public class
Queue
<
T
>
4
{
5
protected class
Enumerator
6
{
7
Queue
<
T
>
queue
;
8
9
public
Enumerator
(
Queue
<
T
>
queue
)
10
{
11
this
.
queue
=
queue
;
12
}
13
}
14
}
15
16
class
X
17
{
18
public static void
Main
()
19
{ }
20
}