Which node kind does this program print?
csharp
using System;
using System.Linq.Expressions;
Expression<Func<int, bool>> test = value => value > 10 && value < 20;
Console.WriteLine(test.Body.NodeType);
using System;
using System.Linq.Expressions;
Expression<Func<int, bool>> test = value => value > 10 && value < 20;
Console.WriteLine(test.Body.NodeType);