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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs3022.cs
blob
77a78c39235daa98ae0821b9c018ca06ec580b8c
1
// CS3022: CLSCompliant attribute has no meaning when applied to parameters. Try putting it on the method instead
2
// Line: 8
3
// Compiler options: -warn:1 -warnaserror
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
public class
Class
{
9
public void
Test
([
CLSCompliant
(
false
)]
uint
u
) {
10
}
11
}