blob: 421e52a3b81e8722942be574541f285957bcc56a [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001Class loaders allow code to "redefine" a given class, e.g. it's possible to
2have multiple classes called "com.android.Blah" loaded simultaneously. The
3classes are distinct and must be treated as such. This test exercises
4some situations in which a VM that only checks the UTF-8 signatures could
5mix things up.
6
7This also tests a couple of situations in which an IllegalAccessException
8is expected.