class TestCase::Allow::PrivateData {
  allow TestCase::Allow;
  
  our $X : int;
  has x : int;
  
  private static method foo : int () {
    return 3;
  }
}