Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
b3e9c7290114df08f5fb2660ea13108bf5344a6d
/
.
/
Tests
/
JavaJavah
/
C.java
blob: 54b1be205cf2309e11753dc42b27f9b8619fe752 [
file
] [
log
] [
blame
]
class
C
{
public
C
()
{
}
public
native
void
printName
();
static
{
try
{
System
.
loadLibrary
(
"B"
);
}
catch
(
UnsatisfiedLinkError
e
)
{
System
.
err
.
println
(
"Native code library failed to load.\n"
+
e
);
System
.
exit
(
1
);
}
}
}