• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4 package shaking16;
5 
6 public class b {
7 
8   public int a;
9   public int b;
10 
b(int a, int b)11   public b(int a, int b) {
12     this.a = a;
13     this.b = b;
14   }
15 
a()16   public void a() {
17     System.out.println("Called a in Superclass" + a + ", " + b);
18   }
19 
b()20   public void b() {
21     System.out.println("Called b in Superclass");
22   }
23 }
24