Last change
on this file since 4b30318b was c26bea2a, checked in by Peter A. Buhr <pabuhr@…>, 2 years ago |
first attempt at renaming directory tests/concurrent to tests/concurrency to harmonize with other concurrency directory names
|
-
Property mode
set to
100644
|
File size:
212 bytes
|
Line | |
---|
1 | #include <monitor.hfa>
|
---|
2 |
|
---|
3 | monitor Empty {};
|
---|
4 |
|
---|
5 | struct Test {};
|
---|
6 |
|
---|
7 | // Should work:
|
---|
8 | void ?{}(Test & this, Empty & mutex mon) {}
|
---|
9 |
|
---|
10 | // Should not work:
|
---|
11 | void ?{}(Empty & mutex this) {}
|
---|
12 |
|
---|
13 | int main(void) {
|
---|
14 | printf("done\n");
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.