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
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-396.cs
blob
1262608954da5868a2b4d27ef68a72408a0c445f
1
// Compiler options: -r:test-396-lib.dll
2
3
public class
MainClass
4
{
5
public static int
Main
()
6
{
7
A a
=
new
A
();
8
B b
=
new
B
();
9
bool
r
= (
a
==
b
);
10
11
return
0
;
12
}
13
}