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
Fix bug #566087.
[mcs.git]
/
tests
/
gtest-311.cs
blob
e7a3f69340b4fe7153991e0f2a65dd49801378d0
1
// Compiler options: -t:library
2
3
using
System
;
4
using
System
.
Runtime
.
InteropServices
;
5
6
class
A
7
{
8
[
DllImport
(
"Dingus"
,
CharSet
=
CharSet
.
Auto
)]
9
extern static void
Do
<
T
> ();
10
11
[
DllImport
(
"Dingus"
)]
12
extern static void
Do2
<
T
> ();
13
14
static void
Main
()
15
{
16
17
}
18
}