aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3174.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-28 10:06:52 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-30 14:26:08 +0200
commit7ef1bd5464f63fcb1873349d2fc13f58476d9a27 (patch)
tree67cb2b3f8bc54c56e282d24b58c2cf3acdd46af1 /tests/pos/t3174.scala
parent086b1c29af6014c1a714276bf87fcd3c6505aafe (diff)
downloaddotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.tar.gz
dotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.tar.bz2
dotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.zip
Disable failing tests. See #503
Diffstat (limited to 'tests/pos/t3174.scala')
-rw-r--r--tests/pos/t3174.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pos/t3174.scala b/tests/pos/t3174.scala
deleted file mode 100644
index 8d9b2578d..000000000
--- a/tests/pos/t3174.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object test {
- def method(): Unit = {
- class Foo extends AnyRef {
- object Color {
- object Blue
- }
-
- class Board {
- val grid = Color.Blue
- }
- }
- new Foo
- }
- }