www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 21967] New: importC: Error function without 'this' cannot be

https://issues.dlang.org/show_bug.cgi?id=21967

          Issue ID: 21967
           Summary: importC: Error function without 'this' cannot be
                    'const'
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: major
          Priority: P1
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: ibuclaw gdcproject.org

When declaring a function that returns a const result.
---
const int const_int_fn(void);
const int *const_int_fnptr(void);
const int **const_int_fnptrptr(void);

--
May 25 2021