a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
343 B
C#
18 lines
343 B
C#
// CS0628: `Test.print_argv(string[])': new protected member declared in sealed class
|
|
// Line: 8
|
|
// Compiler options: -warn:4 -warnaserror
|
|
|
|
using System;
|
|
|
|
internal sealed class Test {
|
|
protected string print_argv (string[] argv)
|
|
{
|
|
if (argv == null)
|
|
return "null";
|
|
else
|
|
return String.Join (":", argv);
|
|
}
|
|
|
|
static void Main () { }
|
|
}
|