Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1525-39.cs
1 // CS1525: Unexpected symbol `}', expecting `(', `,', `{', or `where'
2 // Line: 9
3
4 using System;
5
6 namespace Test 
7 {
8     class A : Tuple<A>
9 }