From 02ed5fb3bc8d792872223ceecfd8fd0ae089d923 Mon Sep 17 00:00:00 2001 From: Eugene Burmako Date: Thu, 31 Jan 2013 11:49:19 +0100 Subject: SI-6989 privateWithin is now populated in reflect Runtime reflection in JavaMirrors previously forgot to fill in privateWithin when importing Java reflection artifacts. Now this is fixed. --- test/files/run/t6989.check | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/files/run/t6989.check (limited to 'test/files/run/t6989.check') diff --git a/test/files/run/t6989.check b/test/files/run/t6989.check new file mode 100644 index 0000000000..06bc3b7200 --- /dev/null +++ b/test/files/run/t6989.check @@ -0,0 +1,24 @@ +============ +class JavaClass_1 +isPrivate = false +isProtected = false +isPublic = false +privateWithin = package foo +============ +variable x +isPrivate = true +isProtected = false +isPublic = false +privateWithin = +============ +variable y +isPrivate = false +isProtected = true +isPublic = false +privateWithin = package foo +============ +variable z +isPrivate = false +isProtected = false +isPublic = true +privateWithin = -- cgit v1.2.3