summaryrefslogtreecommitdiff
path: root/test/files/run/t6288.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-12-11 23:56:10 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-12-12 07:19:55 +0100
commit286dced26e0d12796ab183b273ce6f00da182709 (patch)
tree47c4a6708bf226fbf3111b4e7652e0f0e2b788ea /test/files/run/t6288.check
parentf69b8468b76edc9f25a4cb97022a136be988b236 (diff)
downloadscala-286dced26e0d12796ab183b273ce6f00da182709.tar.gz
scala-286dced26e0d12796ab183b273ce6f00da182709.tar.bz2
scala-286dced26e0d12796ab183b273ce6f00da182709.zip
SI-6288 Remedy ill-positioned extractor binding.
The call to `Option#get` on the result of the unapply method was unpositioned and ended up with the position of the `match`.
Diffstat (limited to 'test/files/run/t6288.check')
-rw-r--r--test/files/run/t6288.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t6288.check b/test/files/run/t6288.check
index 3e65b8127c..e1aa58ea82 100644
--- a/test/files/run/t6288.check
+++ b/test/files/run/t6288.check
@@ -12,7 +12,7 @@
[84]<synthetic> val o7: [84]Option[Int] = [84][84]Case3.unapply([84]x1);
[84]if ([84]o7.isEmpty.unary_!)
[84]{
- [90]val nr: [90]Int = [64]o7.get;
+ [90]val nr: [90]Int = [90]o7.get;
[97][97]matchEnd4([97]())
}
else