diff options
author | 2015-10-09 13:35:35 +0000 | |
---|---|---|
committer | 2015-10-09 13:35:35 +0000 | |
commit | 793e6fbdefb092d1dab50bca5618aed110c7e037 (patch) | |
tree | 8529e68c619ae72e003eedf67eda7bd35bcbfb08 /test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java | |
parent | c9f225501f74f5cc3a58f0d311061ace8db6f0c4 (diff) | |
parent | d48708dd87879d9e7855011b5913bf6ade502799 (diff) |
Merge "Add test to check that unverified methods are not inlined."
Diffstat (limited to 'test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java')
-rw-r--r-- | test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java b/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java new file mode 100644 index 0000000000..ff11d7adc9 --- /dev/null +++ b/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package other; + +/* package */ class InaccessibleClass { +} |