a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
188 B
C#
9 lines
188 B
C#
// CS2017: Cannot specify -main if building a module or library
|
|
// Line: 0
|
|
// Compiler options: -main:ClassMain -target:library
|
|
|
|
class ClassMain {
|
|
public static void Main () {}
|
|
}
|
|
|