/* * Copyright 2012 Phil Pratt-Szeliga and other contributors * http://chirrup.org/ * * See the file LICENSE for copying permission. */ package org.trifort.rootbeer.testcases.rootbeertest.gpurequired; public class StaticsTest2BaseClass { protected static int m_BaseInt; public StaticsTest2BaseClass(){ m_BaseInt = 20; } }