Advertisement
redefrec

NetTest

Jun 8th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.25 KB | None | 0 0
  1. module net.test;
  2.  
  3. import meta.search;
  4. import std.traits;
  5.  
  6. struct TestUDA {}
  7.  
  8. @TestUDA
  9. struct X {
  10.     int x;
  11. }
  12.  
  13. void main(string[] args) {
  14.  
  15.     pragma (msg, staticMap!(fullyQualifiedName, TransitiveSearchUDA!(TestUDA, mixin(__MODULE__))));
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement