summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-08-18 20:46:07 -0700
committerPaul Phillips <paulp@improving.org>2012-08-18 20:46:07 -0700
commit9070cb7248a49eab7693779c79bbe73beaccb639 (patch)
tree26da24fb5a9bb5f87c537e4fae111d4c5ed2209d /test/files
parentaf19824ab993e5a4f9d09fe76793dbc7795432cf (diff)
parentc17c95ca3fffc35ed251e95ec321a1c67038f9f8 (diff)
downloadscala-9070cb7248a49eab7693779c79bbe73beaccb639.tar.gz
scala-9070cb7248a49eab7693779c79bbe73beaccb639.tar.bz2
scala-9070cb7248a49eab7693779c79bbe73beaccb639.zip
Merge pull request #1161 from VladUreche/issue/5788-hack
SI-5788 correct test and symbol update
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/SI-5788.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/files/pos/SI-5788.scala b/test/files/pos/SI-5788.scala
index 93b84bde87..f292461804 100644
--- a/test/files/pos/SI-5788.scala
+++ b/test/files/pos/SI-5788.scala
@@ -1,4 +1,3 @@
-trait Test {
- trait B[T]
- private final def grow[T](): B[T] = grow[T]()
+trait Foo[@specialized(Int) A] {
+ final def bar(a:A):A = bar(a)
}