blob: 126796f9a62c29b97dc6f8138d96286149980f13 [file] [log] [blame]
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package jvmbootstraptest;
public class MyClassLoaderIsNotBootstrap {
public static void main(String[] args) {
if (MyClassLoaderIsNotBootstrap.class.getClassLoader() == null) {
throw new IllegalStateException(
"Application level class was loaded by bootstrap classloader");
}
}
}