こういうの: ```cs class Foo { } class Bar { } ... var actual = new Foo(); actual.AssertIs(new { GetType = typeof(Foo) }); // 成功 actual.AssertIs(new { GetType = typeof(Boo) }); // 失敗 actual.AssertIs(new { }); // ちな従来のやつ。もち成功 ``` `GetType` とか適当な予約語によって、actual 側のランタイム型との等値アサートを指示する感じ。