summaryrefslogtreecommitdiff
path: root/test/files/pos/compile.scala
blob: 7b493bacc9516f318d394b17a24ef9d3690127d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//############################################################################
// Compile Time Bugs
//############################################################################
// $Id$

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

class Test0Foo[X];

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

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