From 90cacadfa28b1dd5d37fa60921293aa05a2783b2 Mon Sep 17 00:00:00 2001 From: jkhhon Date: Wed, 25 Jun 2025 11:42:52 -0400 Subject: [PATCH] Added test case --- tests/init-global/pos-tasty/test-safe-value.scala | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/init-global/pos-tasty/test-safe-value.scala diff --git a/tests/init-global/pos-tasty/test-safe-value.scala b/tests/init-global/pos-tasty/test-safe-value.scala new file mode 100644 index 000000000000..cb5149864216 --- /dev/null +++ b/tests/init-global/pos-tasty/test-safe-value.scala @@ -0,0 +1,7 @@ +package scala.collection.immutable + +object A { // These are a safe values, so no warning should be emitted + Node.HashCodeLength + Node.BitPartitionSize + Node.MaxDepth +} \ No newline at end of file