a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
258 B
C#
18 lines
258 B
C#
// Parser tests for contextual where
|
|
|
|
namespace WhereProblems
|
|
{
|
|
class MyClass<where> { }
|
|
interface MyInterface<where> { }
|
|
struct MyStruct<where> { }
|
|
|
|
class Classes
|
|
{
|
|
class where { }
|
|
class DER17 : where { }
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|
|
} |