mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
more complex just in case
This commit is contained in:
@@ -10,3 +10,4 @@ const notmain = require('./notmain');
|
||||
|
||||
assert(notmain.x === 1);
|
||||
assert(notmain.y === 2);
|
||||
assert(notmain.z === 3);
|
||||
|
||||
@@ -1,2 +1,5 @@
|
||||
import { z as z2 } from './notmain2'
|
||||
|
||||
export const x = 1;
|
||||
export const y = 2;
|
||||
export const z = z2;
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
export const z = 3;
|
||||
Reference in New Issue
Block a user