2
0
mirror of synced 2025-02-23 14:58:12 +00:00
mobile/bind/testdata/try.java.c.golden
Elias Naur 8ee74ac900 bind: support underscores in identifiers
Fixes golang/go#18536

Change-Id: I82c5993547e4d1d0df14726ccc569e1f57128072
Reviewed-on: https://go-review.googlesource.com/101156
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
2018-03-21 16:27:11 +00:00

25 lines
506 B
Plaintext

// JNI functions for the Go <=> Java bridge.
// gobind -lang=java try
//
// File is generated by gobind. Do not edit.
#include <android/log.h>
#include <stdint.h>
#include "seq.h"
#include "_cgo_export.h"
#include "try.h"
JNIEXPORT void JNICALL
Java_try_1_Try__1init(JNIEnv *env, jclass _unused) {
jclass clazz;
}
JNIEXPORT jstring JNICALL
Java_try_1_Try_this_1(JNIEnv* env, jclass _clazz) {
nstring r0 = proxytry__This();
jstring _r0 = go_seq_to_java_string(env, r0);
return _r0;
}