1// Copyright 2006 The Android Open Source Project
2
3/**
4 * Version with package scope access.
5 */
6public class SemiPrivate {
7    /* not private */ static String mPrivvy = "stuff";
8}
9