summaryrefslogblamecommitdiff
path: root/test/files/pos/compile.scala
blob: f94aceedac49bc53024f2be2f91465d62dbd06b0 (plain) (tree)
1
2
3
4
5
6
7
                                                                              
                                 


                                                                              

                                                                   











                                                                              
//############################################################################
// Compile Time Bugs & Test Cases
//############################################################################
// $Id$

import java.lang.System; // to avoid name clash with .NET's library

//############################################################################
// Test 0

class Test0Foo[X];

object Test0Test {
  type Gen[A] = Test0Foo[A];
  class Tic(g: Test0Test.Gen[Int]);
  class Tac(g:           Gen[Int]);
}

//############################################################################