Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0246-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 016d1c9b722f178e412379b3ebe9247e2e054ff0 (plain)
1
2
3
4
5
6
7
8
9
// gcs0246-8.cs: The type or namespace name `B' could not be found. Are you missing a using directive or an assembly reference?
// Line: 4

class A : C<B>
{
  class B {}
}
 
interface C<X> {}