blob: dd701a4399ea40bd50ec3cd606caeb8aa7d9bb5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS3017: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
// Line: 7
// Compiler options: -warnaserror -warn:1
using System;
[module: CLSCompliant (true)]
[assembly: CLSCompliant (false)]
class Test
{
}
|