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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0449.cs
blob
13d9259b0c77baaaa592d64884c86c47dc3fd5c4
1
// CS0449: The `class' or `struct' constraint must be the first constraint specified
2
// Line: 6
3
4
interface
I
5
{
6
void
Foo
<
T
> ()
where T
:
class
,
struct
;
7
}