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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-418-2-mod.cs
blob
286fbebf78f0faf3b50620ea2307ce294cc59262
1
// Compiler options: -t:module
2
3
using
System
;
4
5
public class
M1
{
6
7
public string
Foo
;
8
9
public
M1
(
string
foo
) {
10
this
.
Foo
=
foo
;
11
}
12
}
13