Repro steps: Just access a property of the globals object: ``` #! "netcoreapp2.0" var x = Args.FirstOrDefault(); ``` **Expected Result** No Error. **Actual Result** <img width="625" alt="screen shot 2017-11-02 at 14 28 21" src="https://user-images.githubusercontent.com/1710369/32328383-1cf92438-bfda-11e7-9d40-ce7e970ddc3c.png"> Note that Linq itself works correctly. For example, the following code works fine: ``` #! "netcoreapp2.0" var x = new List<string> {"a"}; var y = x.FirstOrDefault(); ```