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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs3017.cs
blob
dd701a4399ea40bd50ec3cd606caeb8aa7d9bb5a
1
// CS3017: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
2
// Line: 7
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
7
[
module
:
CLSCompliant
(
true
)]
8
[
assembly
:
CLSCompliant
(
false
)]
9
10
class
Test
11
{
12
}