/* * Copyright 2012 Phil Pratt-Szeliga and other contributors * http://chirrup.org/ * * See the file LICENSE for copying permission. */ package org.trifort.rootbeer.testcases.rootbeertest; public class CompositeClass3 extends CompositeClass2 { public CompositeClass3(int value){ super(value); } @Override public int go() { return super.go(); } }