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
/
test-248.cs
blob
f3f093d4dfce552add1d28b64740344744d2613c
1
using
System
;
2
3
class
T
{
4
static
Foo
GetFoo
()
{ return new Foo (); }
5
6
public static void
Main
()
7
{
8
string
s
=
GetFoo
().
i
.
ToString
();
9
Console
.
WriteLine
(
s
);
10
}
11
}
12
13
struct
Foo { public int i; }