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
In class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine:
[mcs.git]
/
tests
/
gtest-438.cs
blob
3a71a66d9d163826d55b2cf0b9668dcafd62ae4e
1
using
System
;
2
3
public class
Tests
4
{
5
public virtual
ServiceType GetService
<
ServiceType
> (
params object
[]
args
)
where ServiceType
:
class
6
{
7
Console
.
WriteLine
(
"asdafsdafs"
);
8
return null
;
9
}
10
11
public static int
Main
()
12
{
13
new
Tests
().
GetService
<
Tests
> ();
14
return
0
;
15
}
16
}