10dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe/*
20dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * Copyright (C) 2015 The Android Open Source Project
30dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe *
40dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * Licensed under the Apache License, Version 2.0 (the "License");
50dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * you may not use this file except in compliance with the License.
60dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * You may obtain a copy of the License at
70dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe *
80dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe *      http://www.apache.org/licenses/LICENSE-2.0
90dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe *
100dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * Unless required by applicable law or agreed to in writing, software
110dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * distributed under the License is distributed on an "AS IS" BASIS,
120dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * See the License for the specific language governing permissions and
140dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe * limitations under the License.
150dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe */
160dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe
170dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampepackage sub;
180dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe
190dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe// A package-private class with a public constructor.
200dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampeclass PPClass {
210dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe    public PPClass() {
220dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe    }
230dd76cd3f09f495a1b9a0e4f8712c09ff885c6fdAndreas Gampe}