/******************************************************************************* * Copyright (c) 2019 Contributors * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.aspectj; public class JdkSpecific { public static void main(String... args) { System.out.println("This is the Java 11 version of the class."); } }