changeset 713:60009f2d4a3e

Eugene Pelekhay <pelekhay@gmail.com> news:dj5nic$24r7$1@digitaldaemon.com 2005-10-19
author thomask
date Sun, 23 Oct 2005 11:45:46 +0000
parents aebd2e3d6382
children d63a2653997f
files addon/import 09/import_dummy_09.d run/i/import_09.d
diffstat 2 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/addon/import 09/import_dummy_09.d	Sun Oct 23 11:45:46 2005 +0000
@@ -0,0 +1,9 @@
+// $HeadURL: svn://dstress.kuehne.cn/addon/import_01_dummy.d $
+// $Date: 2005-04-06 10:12:29 +0200 (Wed, 06 Apr 2005) $
+// $Author: thomask $
+
+module import_dummy_09;
+
+byte test(byte b){
+	return b+1;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_09.d	Sun Oct 23 11:45:46 2005 +0000
@@ -0,0 +1,18 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Eugene Pelekhay <pelekhay@gmail.com>
+// @uri@	news:dj5nic$24r7$1@digitaldaemon.com
+// @date@	2005-10-19
+
+// __DSTRESS_ELINE__ "-Iaddon/import 09" "addon/import 09/import_dummy_09.d"
+
+module dstress.run.i.import_09;
+
+import import_dummy_09;
+
+int main(){
+	assert(2==test(2));
+	return 0;
+}