aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
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
parent086b1c29af6014c1a714276bf87fcd3c6505aafe (diff)
downloaddotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.tar.gz
dotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.tar.bz2
dotty-7ef1bd5464f63fcb1873349d2fc13f58476d9a27.zip
Disable failing tests. See #503
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/t1237.scala14
-rw-r--r--tests/pos/t3174.scala14
2 files changed, 0 insertions, 28 deletions
diff --git a/tests/pos/t1237.scala b/tests/pos/t1237.scala
deleted file mode 100644
index 31ba2966a..000000000
--- a/tests/pos/t1237.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-class HelloWorld {
- def main(args: Array[String]): Unit = {
-
- object TypeBool;
-
- trait Fct {
- def g(x : Int) = TypeBool // breaks.
-
- // def g(x : Int) = 3 // fine.
- }
-
- ()
- }
-}
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
- }
- }