Merge pull request #3565 from vargaz/no-free-imt-thunks
[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 }