summaryrefslogtreecommitdiff
path: root/test/files/neg/t6558.scala
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@gmail.com>2012-10-25 18:52:39 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-12-02 21:26:48 +0100
commitd9928d59f9b21265f783fe781ad1d3a4ff93bb6e (patch)
tree995882a03b32c19ae015e515ca3336372fe0973d /test/files/neg/t6558.scala
parentf16f4ab157293ac6860d4b00578b983c90b8fc62 (diff)
downloadscala-d9928d59f9b21265f783fe781ad1d3a4ff93bb6e.tar.gz
scala-d9928d59f9b21265f783fe781ad1d3a4ff93bb6e.tar.bz2
scala-d9928d59f9b21265f783fe781ad1d3a4ff93bb6e.zip
Fixes SI-6558: typecheck lazy annotation info using non-silent context.
Make context for typing lazy annotations always non-silent. If lazy annotation info was created in local (silent) context, error could go unnoticed because later they would still use silent typer for typing the annotation.
Diffstat (limited to 'test/files/neg/t6558.scala')
-rw-r--r--test/files/neg/t6558.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/t6558.scala b/test/files/neg/t6558.scala
new file mode 100644
index 0000000000..92c788f21e
--- /dev/null
+++ b/test/files/neg/t6558.scala
@@ -0,0 +1,9 @@
+class AnnotNotFound {
+ def foo(a: Any) = ()
+
+ foo {
+ @sth
+ def foo = 0
+ foo
+ }
+}