aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-11-10 15:58:14 +0100
committerDmitry Petrashko <dark@d-d.me>2015-11-10 15:58:14 +0100
commit7cfd3cad248f4b82da61d324c2724e779ddc5fe0 (patch)
tree9b3bf90ed32e557a6e24ff78d74fba034896d97f /tests
parentf8169b4aac2e80ce7e87fcb20c4da23c99806b04 (diff)
parent949c48e0f325afa29ebc70e94de17d525b26386e (diff)
downloaddotty-7cfd3cad248f4b82da61d324c2724e779ddc5fe0.tar.gz
dotty-7cfd3cad248f4b82da61d324c2724e779ddc5fe0.tar.bz2
dotty-7cfd3cad248f4b82da61d324c2724e779ddc5fe0.zip
Merge pull request #928 from dotty-staging/stdlib-definitions
Make Definitions survive recompilation of core definitions.
Diffstat (limited to 'tests')
-rw-r--r--tests/pos/lazyValsSepComp.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/lazyValsSepComp.scala b/tests/pos/lazyValsSepComp.scala
index 337447280..1a7e37020 100644
--- a/tests/pos/lazyValsSepComp.scala
+++ b/tests/pos/lazyValsSepComp.scala
@@ -12,5 +12,5 @@ import dotty.tools.dotc.core.Contexts._
object Foo {
val definitions: Definitions = null
def defn = definitions
- def go = defn.FunctionClass(0)
+ def go = defn.FunctionType(0)
}