summaryrefslogtreecommitdiff
path: root/test/manual/etags/rs-src/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/manual/etags/rs-src/test.rs')
-rw-r--r--test/manual/etags/rs-src/test.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/manual/etags/rs-src/test.rs b/test/manual/etags/rs-src/test.rs
new file mode 100644
index 00000000000..081d0d7d4df
--- /dev/null
+++ b/test/manual/etags/rs-src/test.rs
@@ -0,0 +1,14 @@
+mod test;
+
+enum IpAddrKind {
+ V4,
+ V6,
+}
+
+fn test1() {
+ println!("Testing");
+}
+
+fn main() {
+ test::test1();
+}