qualified-type-ref-of-var.azsl 438 B

1234567891011121314151617181920212223
  1. class C
  2. {
  3. class D
  4. {
  5. };
  6. };
  7. void func()
  8. {
  9. C::D d;
  10. // need to verify that the compiler understood this type correctly.
  11. // c.f. qualified-type-ref-of-var.py
  12. typeof(d) d2; // while we're at it, let's check that form too.
  13. struct S {} d3; // and that one too.
  14. matrix<half, 3, 4> mh34; // hard (WIP !)
  15. RWBuffer<float4x4> rwbf; // harder
  16. StructuredBuffer< struct Inl {} > sbInl; // hardest
  17. }