a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
166 B
C#
16 lines
166 B
C#
using System;
|
|
|
|
class Test
|
|
{
|
|
public static int Main()
|
|
{
|
|
if (!("aoeu" is String))
|
|
return 1;
|
|
|
|
if (!("aoeu" is Object))
|
|
return 2;
|
|
|
|
return 0;
|
|
}
|
|
}
|