File: InteractiveSessionFixtures.cs
Web Access
Project: src\src\Scripting\CSharpTest\Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.csproj (Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
public class InteractiveFixtures_TopLevelHostObject
{
    public int X, Y, Z;
}
 
namespace InteractiveFixtures
{
    namespace A
    {
        public class X { }
    }
 
    namespace B
    {
        public class X { }
    }
 
    namespace C
    {
        public interface System { }
    }
}