summaryrefslogtreecommitdiff
path: root/test/pending/pos/t5534.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t5534.scala')
-rw-r--r--test/pending/pos/t5534.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/pending/pos/t5534.scala b/test/pending/pos/t5534.scala
new file mode 100644
index 0000000000..834c4fd68d
--- /dev/null
+++ b/test/pending/pos/t5534.scala
@@ -0,0 +1,11 @@
+object Phrase extends Enumeration {
+ type Phrase = Value
+ val PHRASE1 = Value("My phrase 1")
+ val PHRASE2 = Value("My phrase 2")
+}
+
+class Entity(text:String)
+
+object Test {
+ val myMapWithPhrases = Phrase.values.map(p => (p -> new Entity(p.toString))).toMap
+} \ No newline at end of file