public void SupportsIL()
        {
            var c = new Compiler.Compiler <TestClass>();

            c.SupportsIL(c.Compile((i) =>
            {
                return(new Container(new Member((PropertyInfo)i)));
            }))
            .Should()
            .BeTrue();
        }